i am trying to change the default font of the site. i have edited the css file and the changed the font. everything works fine. except the nav menu font. its not changing. it is set to default ""Trebuchet MS", Arial, Helvetica, sans-serif" font.
css code:
i can change the font here.. but the problem i am facing here is this code is pointing to (index):67 (when i do inspect element in chrome) where can find this code? which file i have to edit.?


in css file .sf-menu > li > a this part doesn't have this code.
Code in style.css
even if i put font face here, it not changing the navigation menu fonts.
how to fix this???
css code:
Code:
.sf-menu > li > a {
font: bold 21px/66px "Trebuchet MS", Arial, Helvetica, sans-serif;
color: #333333;
}

in css file .sf-menu > li > a this part doesn't have this code.
Code in style.css
Code:
.sf-menu > li > a {
padding:0 28px;
border:none;
color:#323232;
-webkit-transition:0.3s;
-moz-transition:0.3s;
-o-transition:0.3s;
transition:0.3s;
}
even if i put font face here, it not changing the navigation menu fonts.
how to fix this???
Comment