help changing text format main menu bar

Latest Reply from suzcalhoun at 2013-12-03 01:05:10
help changing text format main menu bar
Hello.

what is your mean ? text format of menus ?
have you problem about putting specific language in pages ?

if you have any problem like changing your Pages language, try to change your charset files. please search about it. can't describe about it in this forum.
but i guess WordPress support all languages because its default charset is UTF-8.

Have fun!
I want to change text bigger and different font
Hello,

you should try to change your css files. you didn't say about your URL site or Theme name and the section you want change it. find the section ID or Class that you would like to change, and if it has the following css try to change them, and if it hasn't, try to add them:


p { font-size: 10px; }

( or 20px; or 1em; or 2em; or 150%; or 300%; or more to make text bigger )
p is an attribute, can be an ID or Class or either like class="myclass" that you should use it first in your HTML tags ( Class and ID exist in your theme , means everything in your theme has a Class name or ID name ) then HTML select CSS to find changes.


font-family:"Times New Roman", Times, serif;

or any fonts that you want to use. you should have an idea of what font you want to use. and if your font is out of windows library fonts, you should import them first with following tutorial:

@font-face
{
font-family: myFont;
src: url('Sansation_Light.ttf')
,url('Sansation_Light.eot'); /* IE9 */
}

'Sansation_Light' is the font that you want to Declare for browser. you should import the font file too in your css directory.

and when you want use you it you should add following instruction to your CSS files:

p { font-family:myFont; }

p is an attribute, can be an ID or Class or either like class="myclass" that you should use it first in your HTML tags ( Class and ID exist in your theme , means everything in your theme has a Class name or ID name ) then HTML select CSS to find changes.

and you can use Google Library fonts:

@import url(http://fonts.googleapis.com/css?family=Oswald);


and use it like this:

p { font-family: 'Oswald',sans-serif; }


family=Oswald -> Oswald is the font that you want to import.

Hope helped,
Have fun!
thank you very much, I found
I have a similar question. I want to enlarge the font and center the menu. This is the website: http://coconutz-costarica.com/

Leave a reply

Add codeAdd image