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
How can I center the Page Copy in the Content/Description?
Thanks for your time and help!
Terry
just mucking my way through this stuff...
www.terrygipsonphotography.com
Offline
either use inline styling or custom css.
Probably easier to use custom css if you're already set up for it.
For inline styling:
Place in the Page Copy (md) field:
<h2 style="text-align:center;">Your H2 heading text</h2>
<p style="text-align:center;">Your paragraph text</p>
<p style="text-align:center;">more paragraph text</p>
for the custom css route:
In Page Content (md) field:
<div class ="center-text">
<h2>Your heading</h2>
<p>Your paragraph</p>
<p>another paragraph</p>
</div>
In custom css:
.center-text p, .center-text h2 {
text-align:center;
}
If I get time tomorrow I'll create a short tutorial on my ttg-tips site.
There's also an "alingcenter" class that Matt has included. But it has some bottom margin and is mainly for images, so you probably don't want to use that.
http://ttg-tips-and-tricks.barbeephoto. … s-ttg-ce4/
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
There's also an "aligncenter" class that Matt has included. But it has some bottom margin is mainly for images, so you probably don't want to use that.
Yeah, that's definitely intended for images. It's inherited from WordPress, and is the class that WordPress assigns to an image when you use the Insert Media button and set an alignment therein.
Offline
Thank you both for the help!
just mucking my way through this stuff...
www.terrygipsonphotography.com
Offline
And here's a post about the various ways you can align text:
http://ttg-tips-and-tricks.barbeephoto. … ttg-pages/
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Pages: 1