• Resolved petervg1810

    (@petervg1810)


    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: https://dev.windsurfaddicts.com/videos/

    I’ve enabled Tubepress as an example, but all the other plugins I’ve tried show the same result.

    https://www.ads-software.com/extend/themes/wp-creativix/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author IWEBIX

    (@iwebix)

    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 ??

    Theme Author IWEBIX

    (@iwebix)

    // 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

    Thread Starter petervg1810

    (@petervg1810)

    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!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Theme: WP-Creativix] Video thumbnails in gallery align left’ is closed to new replies.