Page 1 of 1

Mouseover in menu for background AND text

Posted: Sun 28. Aug 2005, 18:25
by CodexX
concerns: NAV_TABLE_COLUMN
with the curser over a menu field the background color changes but the text doesn't. it only changes when the cursor is over the text.

is it possible to link those to mouseover effects so that the text also changes (becomes bold or underlined) if the mouse is over its line (and the background color changes).

thank you. :)

Posted: Sun 28. Aug 2005, 18:38
by Pappnase
if i remember right you can control this via css! :shock:

Posted: Mon 29. Aug 2005, 05:05
by rtilghman
Make the link style "display: block". You can isolate the scope of the style by putting a class on the TD that surrounds your menu RT in the template and implementing the style like the following:

TDMenuID ul li a {
display: block;
}

Best,
rt

Posted: Mon 29. Aug 2005, 13:53
by CodexX
rtilghman wrote: TDMenuID ul li a {
display: block;
}
hi!
it was a bit trickier but with the clue "display: block" i was able to manage it.
thanks
:)