Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
How can I format the text (Title, Caption etc.) below the Galleria slideshow at my homepage?
See https://britogtruls.no/
Offline
use custom css. the selectors are:
.galleria-info-title and .galleria-info-description
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Thanks for the info!
I have tried the following code in my CSS file:
.galleria-info-title{
text-size: 20.0pt;
color: green;
}
.galleria-info-description{
text-size: 100.0pt;
color: red;
}
As you can see at my homepage the colors are OK, but the text-size doesn't change.
I tried line-height as well, that worked fine.
What do you think is my problem?
Offline
your using the wrong property for the text size. Try:
.galleria-info-title {
font-size: 20.0pt;
color: green;
}
.galleria-info-description {
font-size: 100.0pt;
color: red;
}
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Thanks a lot, now it works as expected
Offline