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
I used Rod's code to create a two column text layout. The only issue I see is that the two columns do not cover the width of my website. The left column/photo is indented and the right column has a lot of space on its right side.
here is the link to the page that uses two column code:
http://sweetlightgallery.com/test/photographer/
Any suggestions on how I can correct this?
Offline
Do you have the three column layout enabled?
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
looks like you've got a tray active with no content in it. Try setting your page template to the one-column layout.
The page is looking good.
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 set the page template to a one-column layout, which helps the text occupy the entire page, but it is still indented in from the sides. Any thoughts on how to correct this?
Offline
Now it is a matter of your css settings. Here I remove the default paddings and add a new one to get some distance between the two columns:
.the__copy {
padding: 0;
}
@media screen and (min-width: 992px) {
.grid_12 *[class*="col_"] {
padding-right: 0;
padding-left: 0;
}
.col_4 {
padding-left: 24px;
}
.col_8 {
padding-right: 24px;
}
}
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
The responsive grid has alpha and omega classes that will negate the built in padding on the left (alpha) and right (omega)
Apply the alpha class to the first block and the omega class to the second.
See my demo page for examples: http://backlight-rb-test.barbeephoto.co … e-grid.php
And there are some other classes you can use. I outline some here:
http://ttg-tips-and-tricks.barbeephoto. … backlight/
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
adding the alpha and the omega worked. A few more tweaks and I am ready to install cart.
Thanks Rod and Daniel for all of your help.
Offline
The Push and Pull classes are handy too.
Say that on the desktop you want certain content on the left and other content on the right, but you want the content on the right to end up above the content on the left when the site is used on mobile devices.
http://backlight-rb-test.barbeephoto.com/push-pull.php
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