Changing Main menu Font/size?
-
Is there a easy way to change the main navigation font size or spacing? Any help would be appreciated. Thanks!
-
Hi Nathanj, you can make changes of Navigation menu. But you should make a child theme before making any changes.
http://codex.ww.wp.xz.cn/Child_Themes
In the stylesheet of child theme, you can simply put some CSS to make your desired changes.
thank you for repying, Im kinda a dummy can you give me a basic example to make the text font all caps with half the spacing it currently has?
Try this:
.navbar .nav > li > a { font-size: 16px; padding: 5px 10px; text-transform: uppercase; }hmm in the style sheet nothing is there so I tried it in Custom CCS but didn’t get any changes?
Link your site please.
You need to follow the Child Theme step, posted by @mybdbis.
Ok I did that now and still no changes
Activate your Child Theme please.
Its not in the themes panel
Hi nathanj, please create the Style sheet into your child theme folder. If you follow the instruction carefully, everything is ellaborately explained over there.
Once your style.css file is created as per the instruction stated in the Child Theme, in the themes option, you will see the Child Theme available.
Then activate the Child theme.
http://s7.postimg.org/j9j8d1zkb/see.jpg I did this but its not in the themes panel
In the Style sheet of Customizr Child Theme, please write the following:
@import url("../customizr/style.css");Make sure you are pointing the right theme, ‘customizr’ , not as ‘twentythirteen’ theme mentioned in Child Theme Codex.
@import url(“../customizr/style.css”);
/*
Theme Name: Customizr Child
Theme URI: http://example.com/
Description: Child theme for the Twenty Thirteen theme
Author: Your name here
Author URI: http://example.com/about/
Template: twentythirteen
Version: 0.1.0
*/.navbar .nav > li > a {
font-size: 16px;
padding: 5px 10px;
text-transform: uppercase;
}Like that?^
Template: twentythirteenis incorrect. Should be ‘customizr’ with lower case c.
The topic ‘Changing Main menu Font/size?’ is closed to new replies.
