The Suckerfish menu does not appear to highlight the current (primary) menu item that has been selected / for the page you are on. What code can I add to the CSS file to fix this?

Note that I'm in fact using a modified instance of the Roople Whitejazz theme, using the proper method to inherit the parent theme. Attached is the customised /httpdocs/sites/all/themes/jazzitup/jazzitup.css file.

CommentFileSizeAuthor
jazzitup.pdf41.85 KBBeernink
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Kisugi Ai’s picture

add here

#suckerfishmenu a:active {
color: #EF7D0B;
background: #FDD9B9;
/* background: #6C8CB5; */
text-decoration: none;
border-right: #999 solid 1px;
}
#suckerfishmenu a:active, #suckerfishmenu a.active {
color: #EF7D0B;
background: #FDD9B9;
/* background: #6C8CB5; */
text-decoration: none;
border-right: #999 solid 1px;
}

ist should work for the first SFline
why thats with a:active not work don't know.

but you can filer on class "active" because drupal set the class in the active link

Greetings

Beernink’s picture

Status: Active » Closed (fixed)

That worked nicely. Many thanks!