Changing the font on the main nav menu sub items

I would like to change the font on the sub cat items of the main nav drop down menus to be the same as the main (top level) menus. Where do I do this -- Im presuming it is css somewhere but i cant seem to find it

Thanks

1 answer

Profile photo of thangnn1510 0.00 $tone May 11, 2011
Public

Please change this code

Code:

#nav ul li a, #nav li.active li a {
  color: #666666;
  font-size: 100%;
  letter-spacing: normal;
  line-height: normal;
  margin: 0;
  padding: 10px 0;
}

to:

Code:

#nav ul li a, #nav li.active li a {
  color: #111111;
  font-family: 'BebasNeueRegular';
  font-size: 160%;
  letter-spacing: 2px;
  line-height: 1.3;
  padding: 5px 5px 2px 20px;
}

in /skin/frontend/default/jm_adamite/css/menu.css.

Hope this helps.

#1

Please login or Register to Submit Answer

Written By

Comments