By Jeff Suddaby on Wednesday, 12 March 2014
Posted in General Issues
Replies 3
Likes 0
Views 1K
Votes 0
Hi,

When posted in the blog, images in the post float left - which is what I want.

However, when the link at the top of the blog post is clicked - to access the full blog entry itself - the image goes to top-center. http://screencast.com/t/WhMP8P2aE1

How do I get the image in the full blog post to float left?

TIA - Jeff.
Hello

Paste this in your custom.css file or at the bottom of your template.css file.
#ezblog-body .blog-image-container {
text-align: left !important;
}

Thanks:)
·
Wednesday, 12 March 2014 03:37
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks Khairul,

I amended the hack to get a float effect with a margin...

/* Set css to float-left images on full blog entry pages */
#ezblog-body .blog-image-container {
/* text-align: left !important; */
float: left !important;
margin-right: 10px !important;
}


This seems to work fine.

Thanks a ton! - Jeff.
·
Wednesday, 12 March 2014 04:04
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for updating Jeff Glad that your issues are resolved now.
·
Wednesday, 12 March 2014 10:19
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post