Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Superfish Question Reply To: Superfish Question

#247986
Shikkediel
Participant

I think the problem is that the CSS for the plugin is the very final (inline) style inside the head section of the page. So it overwrites previous definitions. If you’re not able to access this – or paste another inline style element inside the head after it, there’s always the dirty way:

<script>
jQuery(function($) {
    var style = '<style>header#top .sf-menu li ul li a:visited {color: #000000 !important;}</style>';
    $('head').eq(0).append(style);
});
</script>

Confirming again it looks to be working when the style is in the correct place…