G'day
Has any one encountered problems with IE when using
CSS style sheets? I'm making a web page with a menu
using tables (which I think might be causing the
problem in the first place)
It may, since the content of tables often does not inherit font
settings on a container element or even the body element.
Although it's hard to be specific without seeing the page, best
thing to so is use a list (ul perhaps) for the menu.
If it has to stay in a table, add a rule in your css for that
table (give it an id or class) and see if that fixes the
immediate problem.
Or if you have set the font on the body element, try adding the
table to that rule there. The following example assumes your
menu table has an id of "menu":
body, #menu { font: normal 90%/1.4 Helvetica,sans-serif }
Hope this helps
--
Bert Doorn, Better Web Design
http://www.betterwebdesign.com.au/
Fast-loading, user-friendly websites
******************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************