How could I change the menu font? ---------------------------------------- Hello, There is no list of font available in the theme, You can put any font family that is available at your server it will support at your site and for more choices you can also use font from Google fonts. http://www.google.com/fonts/
Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: #menu li a { font-family: symbol; } Inplace of "symbol" put your font type.
Hello, There is no list of font available in the theme, You can put any font family that is available at your server it will support at your site and for more choices you can also use font from Google fonts. http://www.google.com/fonts/
There is no need to download font. Just go to the http://www.google.com/fonts and select font of your choice and import it in the style.css After that call it where ever you want.
This looks good, I want to capitalize "Home". There is no page for it, how would I do this? Also, the font must be too big because its causing the menu to show up on two lines, how could I make on one line? www.miakoo.com
Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: #menu li a { text-transform: uppercase; font-size: 15px; } This will solve your issue.