Archive for 29 September 2004
Firefox and Safari bugs fixed
29 September 2004 in Code-ing | Comments (0)
If you have previously visited my site using Mozilla Firefox/Netscape Navigator or Apple Safari aka. KDE Konqueror, then today my site should look better! (Some of the sub-pages, e.g. contact form, aren’t fixed yet.)
I got the bug fixed that Opera and IE didn’t care about: the table’s height got crappy in Mozilla and Konquerer rendering engines. To fix this I had to set the font and font size for the TD elements in my table using CSS. I think it is very strange that they do not follow the height setting that they should know to follow.
Even weirder is that I have to set a font size to set the table height…
Anyways, here is the piece of CSS code I used to fix the layout problem:
- TD{
font-family: Trebuchet MS, palatino, georgia, verdana, arial, sans-serif;
font-size: 5px;
}
Feel free to use it on your site and experiment with it to see if it helps you. ![]()