Hi there,

I'm having some problems with the navigation bar links color's in the frontpage because they appear in white while they should appear in black ..
Does anyone know how can i fix it?

Best Regards

Comments

Gentleman1’s picture

I've got the self problem! Can you help me?

A demonstration, that it does not work, you'll find on vitus.diehoesls.de!

Gentleman1’s picture

I have probed it and now I've got the solution for the problem!

In my blogbuzz.css I've edited:

#primary ul a { 
  color: #000; 
  text-decoration: none;
}

#primary ul a:hover, #primary ul a.active, #primary li.active-trail a.active-trail { 
  color: #fff;
  text-decoration: none;
}

#primary ul ul li:hover, #primary ul ul li.active-trail, #primary ul ul li.last a {
  border-bottom: none;
}

to

#primary ul a, #primary ul a.active, #primary li.active-trail a.active-trail { 
  color: #000; 
  text-decoration: none;
}

#primary ul a:hover { 
  color: #fff;
  text-decoration: none;
}

#primary ul ul li:hover, #primary ul ul li.active-trail, #primary ul ul li.last a {
  border-bottom: none;
}

and now it works!