petervg1810
Member
Posted 3 months ago #
I'm trying to create a page with a video gallery. Whatever plugin I use, the thumbnails keep aligning left, never in rows. I've gone through numerous forums and topics and they all say there could be a problem with the theme. If I switch back to a default theme like twenty-ten there is no problem.
Who can help me solve this problem? Is there something I can do in the CSS for example?
You can see for yourselves at: http://dev.windsurfaddicts.com/videos/
I've enabled Tubepress as an example, but all the other plugins I've tried show the same result.
http://wordpress.org/extend/themes/wp-creativix/
IWEBIX
Member
Posted 3 months ago #
I've just been quick checking this but you should adjust:
.tubepress_thumb img {
display: block;
}
remove the display: block and replace it with a float: left; and try again ;)
IWEBIX
Member
Posted 3 months ago #
// edit:
That was wrong, try this:
.tubepress_thumb {
clear: none !important;
float: left !important;
}
Should be working now! We will be looking for a fix in next version.
Cheers
petervg1810
Member
Posted 3 months ago #
Thanks IWEBIX!!!
That's what I needed. I changed the style.css file and now it works. Some settings still give unexpected results, but hey, I'm very happy. Thanks again!