Community @ The Turning Gate

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.

  • New user registrations are disabled.
  • Users cannot create new topics.
  • Users cannot reply to existing topics.

You are not logged in.

#1 2020-01-08 17:59:53

post@trulsellefsen.no
Member
Registered: 2015-01-17
Posts: 37

Customizing picture text below Galleria slideshow

How can I format the text (Title, Caption etc.) below the Galleria slideshow at my homepage?
See https://britogtruls.no/

Offline

#2 2020-01-08 23:07:51

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: Customizing picture text below Galleria slideshow

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

#3 2020-01-10 05:14:48

post@trulsellefsen.no
Member
Registered: 2015-01-17
Posts: 37

Re: Customizing picture text below Galleria slideshow

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

#4 2020-01-10 05:24:30

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: Customizing picture text below Galleria slideshow

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

#5 2020-01-10 07:26:58

post@trulsellefsen.no
Member
Registered: 2015-01-17
Posts: 37

Re: Customizing picture text below Galleria slideshow

Thanks a lot, now it works as expected smile

Offline

Board footer

Powered by FluxBB