The purpose is to enclose the link, when hovered upon, in a box and to change the text color. At first I figured Netscape 6 didn't support hover, but then why is the text color changing? Any ideas?
Which still works in explorer but the box will only enclose the actual word instead of the default 116 pixels I was hoping it would. I'm going to work on it but any ideas there?
The only thing required to make your code work was to include {display: block} within styles for a:hover
Then I changed the doctype to HTML 4.01 Strict. This meant that I had to include <a> within a block-level element like div.
Then I thought, why type "NavJump" 12 times, when you can do it once (for div) and use div.NavJump a {...}
Non-visual browsers need something other than <br> or spaces to distinguish links. Hence I added <span> | </span> and made its display as none... so that it doesn't show up in visual browser.
Thanx, that worked beautifully. Now I won't have to compromise anything. Oh yeah, double thanx for simplifying the code so NavJump didn't have to be typed so many types.
Bookmarks