Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Page & Category Menu Bars (http://forum.bytesforall.com/forumdisplay.php?f=10)
-   -   [SOLVED] Setting the bold font for page menu bar (http://forum.bytesforall.com/showthread.php?t=6784)

vcurious Apr 19, 2010 02:50 PM

[SOLVED] Setting the bold font for page menu bar
 
Is there any way to set a bold font for page menu bar?
Couldn't find it at Theme options :(

juggledad Apr 19, 2010 03:04 PM

you need to add a css insert using the 'font-weight' option using a css selector of 'ul.rMenu li'

vcurious Apr 19, 2010 03:37 PM

Quote:

Originally Posted by juggledad (Post 30199)
you need to add a css insert using the 'font-weight' option using a css selector of 'ul.rMenu li'

Well, found in css.php:
Quote:

ul.rMenu li {
position: relative;
z-index: 1;
}
changed it to:
Quote:

ul.rMenu li {
position: relative;
z-index: 1;
font-weight: bold;
}
Nothing changed :(

juggledad Apr 19, 2010 03:40 PM

Don't change css.php or you will have to change it each time you upgrade the theme. It is much easier to add it to the CSS Inserts. just use
HTML Code:

ul.rMenu li {
font-weight: bold !important;
}


vcurious Apr 19, 2010 03:49 PM

Quote:

Originally Posted by juggledad (Post 30207)
Don't change css.php or you will have to change it each time you upgrade the theme. It is much easier to add it to the CSS Inserts. just use
HTML Code:

ul.rMenu li {
font-weight: bold !important;
}


Thanks for CSS Inserts advise, but same thing.
Font in Page menu bar is still normal, not bold. :(

juggledad Apr 19, 2010 04:10 PM

sorry, most people are dealing with the menu color, you need to use
HTML Code:

ul.rMenu li a{
font-weight: bold !important;
}


vcurious Apr 19, 2010 04:16 PM

That's exatcly what i need!
Thanks again juggledad! :)


All times are GMT -6. The time now is 05:51 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.