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.
Probably missing something obvious, I'm in the process of redesigning my web site using the pangolin galleries and I want to use a descriptive thumbnail gallery as my home page, how do I increase the font size for the heading and description of each gallery - seems to be rather small here
http://www.ipgphotography.uk/Galleries/
Paul
Offline
Custom css: http://backlight.theturninggate.net/doc … tylesheets
use this for the description
figcaption p.album-description {
font-size: 18px;
}
and this for the title:
figcaption p.album-title {
font-size: 20px;
}
You can use em, or px (among others) to set the font size
css font-size property: https://www.w3schools.com/cssref/pr_font_font-size.asp
If you want both increased by a proportional amount, try this:
figcaption p.album-description, figcaption p.album-title {
font-size: 1.2em;
}
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 Rod, just what I was looking for
Offline