Hi Shannon;
========================================
As for the lines, I have no idea why they do that in Firefox. I believe I have the code cleaned up, but it still goes through the titles.
========================================
I'm wondering if that's caused by the font size attribution in your style sheet. If you look in mystyle.css, you'll see this:
a:link { text-decoration: underline, font-size: 1em; font-color: #0000FF; }
"em" isn't a browser compatible denotion of size. It works in IE, but perhaps not so well in Firefox. I think what's happening is that Firefox isn't sure how big to make the font, and the "underline" attribute is ending up through the font instead of underneath it. Try changing that one line to this:
a:link { text-decoration: underline, font-size: 11px; font-color: #0000FF; }
Notice that I changed font-size: 1em to font-size: 11px
If 11 pixels is too big a font, you can change to 10... but try a pixel setting instead of "em" and see if that fixes the problem.
Let me know if that works!
: )
Linda
|