i need a little help for this problem with Drupa7 theming.
I need theming main menu with a class="active"
..my menu is on a block structure.
If my menu is Forum, and the path is mysite/forum.. class="active"
appear and work perfectly on my <a>
tag..but if i try to join on forum sections, the path become mysite/forum/2 (for example)and i lose my class="active"
on <a>
.
I need to maintain class="active"
and my style on all sub sections of the forum.
how i do this?
my css for ".active"
.leaf .active .fontm {
color: #FFF;
font-weight: bold;
}
Thank in advance.
I think its not a CSS problem. Drupal only recognizes the url of the menu to add this class.
Maybe you can use this module to solve the problem: https://drupal.org/project/menu_trail_by_path
Regards.