Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Is it possible to alternate the side that the featured images appears on in the posts loop?
Webpage link – http://www.onthelevelblog.co.uk
Hi Thibaste
You can only shift it from left to right
If you navigate to Appearance > Custom CSS, you’ll get our custom CSS editor. Just add the following code.
body.page-id-42 article.post.post-with-thumbnail-icon .entry-thumbnail, article.page.post-with-thumbnail-icon .entry-thumbnail { float:right !important; }Cheers
Hi Thibaste
Thanks for reaching out.
Try the following under Appearance > Custom CSS:
/* Blog - Thumbnail Layout - Alternate Featured Image Position */ article:nth-of-type(odd).post.post-with-thumbnail-icon .entry-thumbnail, article:nth-of-type(odd).page.post-with-thumbnail-icon .entry-thumbnail { float: right; } article:nth-of-type(odd).post.post-with-thumbnail-icon .entry-main, article:nth-of-type(odd).page.post-with-thumbnail-icon .entry-main { float: left; }Hope that helps.
(You can change the word “odd” to “even” to switch in the opposite order)
That is perfect! Thank you so much!!
Super, glad that helped :)