Home › Forums › CSS › Superfish Question › Reply To: Superfish Question
November 18, 2016 at 4:37 am
#247986
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…