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 would like to align the images representing my Albums to the left in the Album set view. But I can not find a solution. I tried with css, but am not quite sure which element I should address.
Thanks for your help!
Regards
Eckart
Offline
Offline
it would be easier if we could see the page. Can you provide a link?
But off the top of my head, this looks like a descriptive album set. Try using more columns. Set Gutters to 0.
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'm looking at this page: https://eckart-bartnik.de/galleries/extracts/
The custom css you use is not correct
div#albums {
{ <--------
position: left;
left: 30px;
border: 3px solid #73AD21;
}
You have two opening brackets. That's why your CSS is not working.
To only address this page and not affect all other albums, I would use
.slug-extracts .albums {
margin-left: 20px;
}
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
Thanks Rod and Daniel. Your hints helped me to find the right solution:
div#albums {
margin: 0px;
}
is working and the Album figures in the Album set are aligned left.
Thanks!
Eckart
Offline
Pages: 1