I am trying to create a menu where as you rollover each item the text color and background color change. I want each item in the menu to be a conventional html anchor tag (a href="whatever.html"). I dont care that NS4 will just show the items as links and no color change will occur - that is fine. I also want to be able to display the menu in either vertical or horizontal format.
So I set it up using a table, with each td holding a link, and for the horizontal menu all the td's were in one tr, whereas for the vertical menu, each td was contained in a separate tr. I used CSS and hover class. This works fine, except that the background color change only extends to the text area, not the entire table cell. If I assign class change to mouse events in the table elements, then the cell background changes except for the text area, which still will not change until hovered over.
Is there a way to make this work?
G
So I set it up using a table, with each td holding a link, and for the horizontal menu all the td's were in one tr, whereas for the vertical menu, each td was contained in a separate tr. I used CSS and hover class. This works fine, except that the background color change only extends to the text area, not the entire table cell. If I assign class change to mouse events in the table elements, then the cell background changes except for the text area, which still will not change until hovered over.
Is there a way to make this work?
G
Comment