Change this:
Code:
a:hover {
background-color:#66FF33;
color:white;
font-weight:bold;
text-decoration:none;
}
to this:
Code:
td:hover {
background-color:#66FF33;
color:white;
font-weight:bold;
text-decoration:none;
}
You will want to target only the cells in the menu so you can give the table row containing the menu an id, say "menu" and make the code:
Code:
#menu td:hover {
background-color:#66FF33;
color:white;
font-weight:bold;
text-decoration:none;
}
Also, since you are so early into making this page, I'd like to give you a tip that will save you a lot of work in the future, try not to use tables for design, take a look at this article for more info:
http://www.hotdesign.com/seybold/everything.html
Good luck!
Bookmarks