Hi , i always have this problem when i try to make a web page , now im satrting to use seamonkey composer , but this issue is related to html.
When i do a web in my computer at 1024-768 , it looks good on any other computer taht has the same resolution , but , if you view it in 800-600 , it gets all messed up.
So , whats the trick to view correctly a web in any resolution ?
Knowledge? Talent? Just joking
There’s to main ways of doing a web page…I guess, I’m not a pro.
Fixed width, or fluid one
Fixed, it’s the most used I guess ( like this one) and probably the easier for begginers to get a structure
With seamonkey…
Well add a table and give it (force it) dimensions specialy “width”, let’s say 700px
Now the other elements will be placed inside this “frame” table
You must check everytme if this first table have the good width dimensions (seamonkey its weird sometimes)
Now with a little text editor this is done in 20 seconds using CSS
body {
margin: 0;
padding: 0;
background: #000000;
}
#frame {
margin: 20px;
width: 700px;
height: 400px;
font: italic 18px verdana, sans-serif;
color: pink;
border: thin solid green;
}
save this as mypage.css and place it in the same location as your webpage