How to do not all uppercase fonts in main menu

Professional Business Joomla template for corporate and business websites suitable for showing stock quotes, up to date news, portfolio management resources or international market data.
GK User
Fri Mar 30, 2012 5:25 pm
Hello, could you please tell me how to do not all uppercase fonts in main menu???
And where can I read the manual how to change fonts (CSS code) in font menu in the template???
Thanks in advance.
User avatar
Fresh Boarder

GK User
Fri Mar 30, 2012 9:33 pm
Hi.
To change main menu font size please add this code to override.css file:
Code: Select all
 div.gk-menu > ul.level0 > li > a {
font-size: 20px;             // here you can set your size.
}
User avatar
Platinum Boarder

GK User
Wed Apr 04, 2012 1:28 pm
I did it but nothing changed.

I need to do not all uppercase fonts in main menu, not the font size

Can some moderator help me, please???
User avatar
Fresh Boarder

GK User
Wed Apr 04, 2012 2:29 pm
Firstly make sure your selected font supports all cases then use any of the following css in your css/override.css file and make sure css override is enabled in template settings > advanced settings.

Which ever the way you right in Menu items in admin panel.
Code: Select all
div#gkDropMain > ul > li > a > span.menu-title { text-transform: none!important; }

First Letter Capital rest lowercase
Code: Select all
div#gkDropMain > ul > li > a > span.menu-title { text-transform: capitalize; }

All Lowercase
Code: Select all
div#gkDropMain > ul > li > a > span.menu-title { text-transform: lowercase; }


See you around...
User avatar
Platinum Boarder


cron