Problem in post layout , all images are floating to left

please give a look to my test blog http://jesica89.blogspot.com/ there is a problem that post description is coming after thumbnail , i know this can be solved by setting

#contentLeft img, #contentLeft a img {
padding: 0;
margin: 0;
float:left
but by using this , all images in the post floats to left now can anybody solve my problem

What do you want it to do?

Hi,

The easiest solution would be to add a class to the image and then target it correctly. If you can’t add a class then you could target it vie the entry class bit again that would styles any other iimages in .entry.



.entry img {
padding: 0;
margin:0 10px 10px 0;
float:left
} 

The image in question seems to have a surrounding div that has a unique id attached so you could target that one image using the id but I guess that’s not what you meant.

The best solution if you dont want to affect all images is to add a class to the images in question and target them directly.