Text transform in Uppercase - Greek Language

GK User
Wed Jun 19, 2013 4:48 pm
I use the Game Magazine template and I have in all articles and K2 items Greek language. In Greek, the transformation of lower case letters to ALL CAPS in titles or everywhere in the template is giving a wrong GREEK grammatical result.

Please help me how to disable this feature from CSS, or if there is another way to achieve that.

Thank you
User avatar
Junior Boarder

GK User
Wed Jun 19, 2013 10:43 pm
Hi,
you have two options:
1) change text-transform: uppercase; to value none or lowercase
2) OR just delete this rule from stylesheets


ad 1) Try this:
Code: Select all
.gkIsWrapper-gk_game_magazine .gkIsTextItem span.gkIsTextBig, #gkHeader ul.gkTabs li, h1#gkLogo.text, #gkComponent > div > h1, #gkComponent > div > h2, .itemHeader .itemTitle, .genericItemTitle, span.itemImageCaption, span.itemImageCredits, .itemAuthorBlock .itemAuthorDetails h3.itemAuthorName, .itemComments h3, .catItemTitle, .subCategory h2, .itemListSubCategories h3, .gkPopupWrap h3, .box.color1 > div > h3.header, .box_menu.color1 > div > h3.header, .box_text.color1 > div > h3.header, h1, h2, .itemHeader .itemTitle,.genericItemTitle,.catItemHeader .catItemTitle  {
    text-transform: none;
}


Info how/where to: http://www.gavick.com/documentation/joo ... -template/

ad 2) Check in those files:
gk_game_magazine\css\template.css
gk_game_magazine\css\k2.css
User avatar
Platinum Boarder

GK User
Thu Jun 20, 2013 9:06 am
thank you very much!
I tried it and now the grammar is correct.

Alexis
User avatar
Junior Boarder


cron