image Show gk4 title change: different colours, fonts

GK User
Thu Nov 24, 2016 12:45 pm
HY

my site is http://www.mirelalucia.com
I want to change in Home page, in Image Show gk4 something in title
1. I do not want to make the text all the time Upperletters
2. Let say I have this text " STOP doing" - i want STOP to be white but doing to be red
3. I want to have different font style for image show titles ...something like handwrite.
User avatar
Senior Boarder

GK User
Thu Nov 24, 2016 12:52 pm
4. How can i add a semitransparent black background to the title zone?

Thanks.
User avatar
Senior Boarder

teitbite
Mon Nov 28, 2016 10:54 am
Hi

1. Please add this code to override.css and make sure override is enabled in template settings.

Code: Select all
.gkIsWrapper-gk_university figcaption h2 {
    text-transform: none;
}


2. In slide options You will need to use "STOP <span>doing</span>", than extra css in same file as before:

Code: Select all
.gkIsWrapper-gk_university figcaption span {
color: red;
}


3. Try:

Code: Select all
.gkIsWrapper-gk_university figcaption p,
.gkIsWrapper-gk_university figcaption a {
    font-family: cursive;
}


That's the one hand written kind in standard fonts. If You want a custom one than it can be configured in template settings.

4. Also can be done with css:

Code: Select all
.gkIsWrapper-gk_university figcaption {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
}
User avatar
Moderator


cron