Post loop thumbnail images tiling
Hey guys,
Hope you’re all well.
I’m having an issue with the posts carousel on a website I’m updating –
As you can see on the homepage under recent shows, some of the thumbnail images for more recent posts have tiled themselves, despite being sized the same as the images used for later posts.
Any thoughts on how to fix this?
Thanks!
This is our free support forum. Replies can take several days.
Need fast email support? Get SiteOrigin Premium
Replies
1Hi PSBakh,
This is happening due to your custom CSS for this widget. Please open the area where you’ve added the following CSS:
.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-thumbnail a { display: block; width: 300px; height: 420px; background-size: auto; } .sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item h3 a { text-decoration: none; font-size: 14px;} .sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-thumbnail a:hover { background-size: auto;}Please replace the first instance of background-size: auto; with background-size: 300px 420px; and then replace the second with… say, background-size: 320px 440px; How does that look? You may wish to adjust the size for the hover effect (the second background-size) to get a more desired hover effect.
In other words, please replace the above-quoted CSS with:
.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-thumbnail a { display: block; width: 300px; height: 420px; background-size: 300px 420px; } .sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item h3 a { text-decoration: none; font-size: 14px;} .sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-thumbnail a:hover { background-size: 320px 440px;}Replies on this thread are closed.
Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.