How to change logotype text to not show capital letters?

GK User
Mon Jun 16, 2014 2:44 pm
I would like to use a mix av small and capital letters in the logotype (not using an image). How do I do this and keep in mind to keep it simple to upgrade the template in the future?
User avatar
Gold Boarder

GK User
Tue Jun 17, 2014 12:50 am
Hello,

The easies way will be adding the following code under the advanced settings tab as a custom CSS code:

Code: Select all
#gkLogo.text {
text-transform: none!important;
}
User avatar
Administrator

GK User
Tue Jun 17, 2014 6:22 am
Good ... and I am trying to add a control for the size with this code:

Code: Select all
#gkLogo.text {
text-transform: none!important;
font-size: 16px;
}


... but it will not have any effect. Can you give some hints on how to solve it?
User avatar
Gold Boarder

GK User
Tue Jun 17, 2014 8:44 am
Please try to use:

Code: Select all
font-size: 16px!important;
User avatar
Administrator

GK User
Tue Jun 17, 2014 9:28 am
I'm sorry ... it will not work. I use the following code in override.css

Code: Select all
#gkLogo.text {
text-transform: none!important;
font-size: 16px!important;
}


Any other ideas that I can try?
User avatar
Gold Boarder

GK User
Wed Jun 18, 2014 11:04 am
Please try to use the following code:

Code: Select all
#gkLogo.text {
font-size: 16px!important;
}
body #gkLogo.text,
body #gkLogo.text > span,
body #gkLogo.text .gkLogoSlogan {
text-transform: none!important;
}
User avatar
Administrator

GK User
Wed Jun 18, 2014 3:48 pm
Thank you for the assistance so far. It is not working 100% yet, but I will not put more time on it as there will be graphics appearing soon instead. ;)
User avatar
Gold Boarder


cron