Ok, for one thing you should not be defining font sizes with px or pt, it prevents anyone with IE from resizing the text should the need to do so for their own needs.
If you want the text of the dl within subtitle to be a specific size, you MUST use proper syntax. You have this:
Quote:
|
subtitle404, dl {font-size: 11px;}
|
That will only apply 11px to the <dl> because there is no tag "subtitle404". Your notation should be like this:
#subtitle404, dl{font-size: 11px;} - that will apply 11px to the text inside id #subtitle404 AND the <dl>.
If you want it to apply to JUST the <dl> within #subtitle404, then it must be written like this:
#subtitle404 dl{font-size: 11px;}
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|