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.
Pages: 1
This is probably a really stupid question but I've been through every option several times and obviously missing it.
Where is the option to alter the font size for the main album text? I can find the slider for headers and I can find the font family and weight but not size
TIA,
Terry
Offline
there is no option for that.
use custom css or inline styling
Standard body font size is 16px. That’s baked in and there is no control to change it. Everything else is based from that using em or rem. Except specific areas where we have control over font size.
It looks like .the__copy (those are double underscores ) selector controls the main copy areas (1em) and .widget controls the pallets (0.875em)
So you can use those selectors in your custom css to adjust the size. If you wanted 18px fonts for the main copy, you can do either this:
.the__copy {
font-size: 18px;
}
Or
.the__copy {
Font-size: 1.125em;
}
I think that .the__copy should be specific enough.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Ha for something that doesn't need programming that's a bit of an oversight.
Appreciate your fast response and sample css (I would have never figured that).
That made it work
Maybe a future feature would be able to control that via a slider as it would make life a lot easier.
Thanks,
Terry
Last edited by Terry (2020-05-11 21:50:28)
Offline
It's not an oversight. There is intentionally not a font-size slider for body text. Maybe once in a year someone raises it as an issue, so I haven't felt bad at all for not having it. Also, people no longer publish content with WAY TOO SMALL TEXT, the way they regularly used to do with the Lr plugins. That's a win.
Offline
Pages: 1