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
The alb um show title, etc, on the Album Set Page. When you select an album that information goes away. How do you have the info on the album set page show on the album page?
Offline
just add it to the page copy when you create the album in Lightroom
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
I did that and added the # before it to make the text larger. I would like to make the text even larger and center it. I played with various controls but nothing seemed to work. Can you point me in the right direction?
Last edited by bob chadwick (2016-08-22 09:53:38)
Offline
Using # makes the text an H1 heading. If you need it to be larger than it is, you'll need to use custom css.
Backlight's base font size is 16px. All others are based off of that in em. H1 is 2em (32px)
If you need all h1 headings to be bigger, then try larger numbers. In your custom css add:
h1 {
font-size: 2.2em;
}
Or, if you only want to apply the larger size on a case by case basis, you could create a class:
h1.large-h1 {
font-size: 2.2em;
}
change the size as needed
and then assign that class to the heading in your page copy:
<h1 class="large-h1">Your heading</h1>
To center, try this in your page copy. This is if you're enlarging all h1 headings:
<h1 style="text-align:center;">Your heading</h1>
applying the larger h1 selectively:
<h1 class="large-h1" style="text-align:center;>Your heading</h1>
You could also do the whole thing with inline styles. Or if you want to always center your h1 headings you could add the text-align declaration to the custom class above:
h1.large-h1 {
font-size: 2.2em;
text-align: center;
}
several different ways of doing it.
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. I've resisted getting into this so far. I'll take a look at this once I have the site up.
Offline
Pages: 1