The forums ran from 2008-2020 and are now closed and viewable here as an archive.
Home › Forums › CSS › [Solved] Center gallery thumbnails
This theme has a lot of break points. How can I center this gallery dynamically so it’s not left justified? http://lmafilmandvideo.com/videos/
I did find a selector that centered them on iPhone portrait but I need help improving the grid on the desktop breakpoints.
For centering, don’t use floats…use inline-block and then use text-align:center on the parent.
inline-block
text-align:center
I tried to apply these rules. It worked on Firebug but when I applied. .fg-panel { text-align: center !important } ul.fg-thumbHolder { display: inline-block !important }
.fg-panel { text-align: center !important } ul.fg-thumbHolder { display: inline-block !important }
Paulie, thanks again. I refreshed cache and it works!