Problem with floating div vertical alignment

Hi and first of all thanks for this beautiful theme!

I’ve a little problem with the vertical alignment of a floating div: when I put a div at the beginning of a post, the vertical alignment is not right, this div is down by 2 lines.

Here is where you can see the problem:

londrafacile.cristianmay.net/soggiorno-a-londra/mangiare-a-londra/tutti-gli-starbucks-in-centro-a-londra.html

and this is the class I’ve made:

.ad-left{
float: left; 
width: 60%; 
}

Thanks for helping!

Remove its margin from the bottom and you are good to go. You can get this done by adding this simple CSS to Appearance >> Theme Options >> Other >> Custom CSS>

.ad-left {
  margin-bottom: 0;
}

Let me know if this is what you were looking for.