On Jan 14, 2006, at 5:19 PM, Tina Clarke wrote: > I have validated as much as I am able with this site > > http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F% > 2Ffrontpage-tips.com%2F > > I can't understand what is wrong with the margins .. or even where > they are > for the two errors...
Tina, The errors are coming from inline CSS, embedded in style attributes within the HTML itself. The offending lines look like this: style="margin-top: 3" The problem with these declarations are that you need to specify the units of the margins, i.e.: style="margin-top: 3px" That should do the trick. I'll refrain from the obligatory comment on the irony of using valid CSS with a page that showcases FrontPage tips... Whoops. Good luck! -- Matthew Levine (http://www.infocraft.com/) ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
