tags:

views:

131

answers:

1

Hiya,

How do you highlight the menu item of the active page?

Thanks! Steph

+1  A: 

AFAIK the active menu position should have a special css class assigned to it. The class is probably called "active". You can target this class with some css rules and you should be done.

silvo
Silvo is correct, you'll see different classes and ids added to the menu itms such as .active or #current. You then need to create your CSS to highlight the item.
Jeepstone