Hi,

I'm using this great theme. But the Home button doesn't appear right. Showing only the text in white color but no background around it.

Please have a look at this screenshot : http://www.bridgenarbonne.com/images/homebutton.png

Any idea on how to fix this issue ?

Many thanks

Comments

kacprzak’s picture

This is Drupal core issue. However, it can be fixed on theme level. Add this JS to your website:

jQuery(document).ready(function(){
  jQuery('li > a.active').parent().addClass('active');
});

Or look here for full solution:
https://github.com/kacprzak/blogbuzz/commit/dc07577293d3132f0d43f2c5d1ef...