Hi there and thank you in advance =)
I'd like to position my thumbnail which appears on the homepage (featured image) on the right instead of the left when the full post is viewed. How would I do this please?
Thanks!
Hi there and thank you in advance =)
I'd like to position my thumbnail which appears on the homepage (featured image) on the right instead of the left when the full post is viewed. How would I do this please?
Thanks!
Just change following code in style.css:
.entry-previewimage{
float:left;
height:180px;
margin:4px 20px 10px 0;
padding:7px;
width:180px;
}
to:
.entry-previewimage{
float:right;
height:180px;
margin:4px 20px 10px 0;
padding:7px;
width:180px;
}
The Dude
You must log in to post.