![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#41 |
|
Newbie
|
If you need help with web design then theres something wrong. web design is one of the easiest things to do, heres what you do, go download a free 30-day trial for Macromedia Dreamweaver MX, whatever year, preferably newest. Then you just crack it, not that hard and it makes web design unbelivably easier than it already is.
__________________
Sig Removed by Admin. Signatures: Maximum length - The maximum length of a forum signature is 4 to 5 lines. |
|
|
|
|
|
#42 | |
|
Hobbyist Programmer
Join Date: Nov 2005
Posts: 149
Rep Power: 3
![]() |
Quote:
|
|
|
|
|
|
|
#43 |
|
Hobbyist Programmer
|
START
avgSpc = 10
counter = 0
spcCount = 0
while(inChar != endOfString)
{
if strIndex[counter] != ' ' //thats a space
counter++
else
spcCount++
counter++
}
if spcCount >= avgSpc
printOnSite
else
regect string
ENDturn that into what ever language you want for the server side
__________________
i dont know much about programming but i try to help |
|
|
|
|
|
#44 |
|
Resident Grouch
![]() ![]() ![]() ![]() ![]() ![]() Join Date: Jun 2005
Posts: 6,453
Rep Power: 10
![]() |
There's an essential fact here that is escaping attention. Controlling the width as a set number of pixels is (if you succeed) subverting the client's wishes in many cases. Clients use different screen resolutions, different window sizes within their resolution, and dink with other free choices such as text size and icon size. Even in a page with no real problems, using ems for MOST (not all) measurements is preferable. Using relative font-size changes is also almost always a Good Thang. My guess is you'll chase away fewer viewers with a messed up table (particularly if you constrain the damage on the server side) then you will by attempting to override their viewing preferences.
@ChrisX: Your posts are duly impressive. We elect you as fiance' for Chelsea.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code. Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers |
|
|
|
|
|
#45 |
|
Hobbyist Programmer
|
yeah. well good luck and i dont think you have to worry about it.
__________________
i dont know much about programming but i try to help |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|