There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021
you need to add a css insert using the 'font-weight' option using a css selector of 'ul.rMenu li'
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
#3
Apr 19, 2010, 03:37 PM
vcurious
6 posts · Apr 2010
Quote:
Originally Posted by juggledad
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;
}
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;
}
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
#5
Apr 19, 2010, 03:49 PM
vcurious
6 posts · Apr 2010
Quote:
Originally Posted by juggledad
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.
sorry, most people are dealing with the menu color, you need to use
HTML Code:
ul.rMenu li a{
font-weight: bold !important;
}
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
#7
Apr 19, 2010, 04:16 PM
vcurious
6 posts · Apr 2010
That's exatcly what i need!
Thanks again juggledad!