Menu font size
-
Hi gon2train!
Assuming you are using the right floated navigation, you can adjust the stylesheet:
.nav-main-right { font-size: 16px; /* default size is 13px */ }Change the font-size to your needed size; however, going too large will mess with the navigation design/layout.
Also, by increase the font-size, you’ll probably need to adjust the dropdown navigation (if you have any):
#menu .nav-main-right > div > ul ul { margin:-1px 0 0 0; /* change to -3px (just an estimate) */ }Thanks much.
This would be menu at the top of the page over the header.
looked and looked and cant find where it has top menu font size :<(
You should be able to find the sections to edit inside the style.css file. The file is located in: wp-content/themes/adventure-journal/style.css
thanks .. I will look more to see if I can find it …
is there any reason that formatting isn’t taking table html codes?
I am using this
<table style=”border: 0;” cellspacing=”20″ cellpadding=”1″>
<tbody>
<tr>
<td>
text
</td>
<td>
picture
</td>
</tr>
</tbody>
</table>I figured out the table issue. But never could find the font for the menu.
Do you have a link to your live site? Seeing a live version makes things a lot easier to evaluate.
Sure. Here you go.
I know this theme is older. Would there be a better theme to use that will still give me same affects and looks?
Thanks so much for your input and help.
In the file: themes/adventure-journal/style.css
Edit style.css and do a search for:
/* Main Navigation Styling */Right below this you’ll see:
.nav-main-right { background:url(images/mp-navigation-main-sprite.png) no-repeat right -94px; padding-right:11px; }Add font-size to this class ^:
.nav-main-right { background:url(images/mp-navigation-main-sprite.png) no-repeat right -94px; padding-right:11px; font-size:16px; }Now as stated above, you’ll need to also adjust your dropdown menu. Locate:
#menu .nav-main-right > div > ul ul { position:absolute !important; top:100%; left:0; display:none; width:180px; z-index:99999; background-image:none; padding:0px; margin:-1px 0 0 0; }And modify:
margin:-1px 0 0 0;To:
margin:-3px 0 0 0;You need to play with this value as I don’t know how large you are adjusting the font-size.
wow … you are so awesome … thanks much for looking it up .. I will take a look tomorrow to find ..
The topic ‘Menu font size’ is closed to new replies.
