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 2016-08-20 11:14:03

bob chadwick
Member
Registered: 2013-08-14
Posts: 194

Photo Information in an Album

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? 

http://norcrosspics.com/galleries/archives/baseball/

http://norcrosspics.com/galleries/archi … ll-etowah/

Offline

#2 2016-08-20 11:49:28

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

Re: Photo Information in an Album

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

#3 2016-08-22 09:53:07

bob chadwick
Member
Registered: 2013-08-14
Posts: 194

Re: Photo Information in an Album

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

#4 2016-08-22 10:27:59

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

Re: Photo Information in an Album

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

#5 2016-08-22 10:31:59

bob chadwick
Member
Registered: 2013-08-14
Posts: 194

Re: Photo Information in an Album

Thanks Rod. I've resisted getting into this so far. I'll take a look at this once I have the site up.

Offline

Board footer

Powered by FluxBB