[SOLVED] main menu font type

October 08 Joomla Templates
GK User
Tue Jan 10, 2012 10:29 pm
I want to change main menu font type. how can I do that?
I do change font type from template manager but it affects lots of things, like article titles. so it is not the solution.

if you have any override script, or a script to place in css files, that would be helpful.
thanks,
levent
User avatar
Senior Boarder

GK User
Wed Jan 11, 2012 4:27 am
Use below code in custom Code in Advanced settings or in override.css file. Make sure you enable CSS Override feature from Template Settings > Advanced Features > CSS Override [ON]
Example Arial font in Menu Titles.
Code: Select all
div.gk-menu > ul.level0 > li > a > span.menu-title {
     font-family: Arial,Helvetica,sans-serif;
}


See you around...
User avatar
Platinum Boarder

GK User
Wed Jan 11, 2012 5:13 am
Great! thanks a lot. it worked.

could you also teach me how to make these with menu?
1- change the size of the font,
2- make all letters upper case,
3- make the fonts normal, not bold

by the way, this is the website: http://www.gulennews.com/

thanks,

levent
User avatar
Senior Boarder

GK User
Wed Jan 11, 2012 5:19 am
Code: Select all
div.gk-menu > ul.level0 > li > a > span.menu-title {
     font-family: Arial,Helvetica,sans-serif;
     font-size: 15px;
     text-transform: uppercase;
}

Font is not bold anyway but in any case code is "font-weight: normal;" or if you need to make it bold it would be "font-weight: bold;"

See you around...
User avatar
Platinum Boarder

GK User
Wed Jan 11, 2012 5:28 am
thanks a lot.
this is great help.
User avatar
Senior Boarder

GK User
Sat Jan 14, 2012 9:26 am
No problem at all, marking this topic as solved.

See you around...
User avatar
Platinum Boarder


cron