4css
07-05-2005, 03:31 AM
One thing I can suggest off the bat is the fonts that you are using. You have pt's used. Problem with this is this is mainly for print. You should use either em's or percentages, suggested way of doing so is that in your styles, go
html, body {
font-size: 100.01%;
}
Then in the rest of the page, you could use em's which are more relative for those with disabilities. Anyhow, people with vision problems like to increase their fonts. Its best to use as much relativeness as possible.
Also, another good thing to remember, is that you can do a global zeroing out of paddings and margins and borders, then insert them where needed as necessary. (btw, I'm not great with tables, lol, I came into web design just as css was becoming the thing, lol)
So after your html, body style rules, you could go
* {
margin: 0;
padding: 0;
border: 0;
}
Just a little help in the start for you ;>)
html, body {
font-size: 100.01%;
}
Then in the rest of the page, you could use em's which are more relative for those with disabilities. Anyhow, people with vision problems like to increase their fonts. Its best to use as much relativeness as possible.
Also, another good thing to remember, is that you can do a global zeroing out of paddings and margins and borders, then insert them where needed as necessary. (btw, I'm not great with tables, lol, I came into web design just as css was becoming the thing, lol)
So after your html, body style rules, you could go
* {
margin: 0;
padding: 0;
border: 0;
}
Just a little help in the start for you ;>)