Hi There is problem that i am facing in only in one post of the wordpress.The image that is inside a
tag in tag is coming bigger than the actual size of the div. because of this user is not able to differentiate between to different post.please check the image
here is the link where you can check.
The image is floating left so it’s parent DIV “.entry-summary” needs to expand to accomodate the floating element.
To do this you need to add “overflow: hidden” to “.entry-summary”.
you could try:
This will keep the aspect ratio, unless ofcourse you want to cut if off with the overflow
You can add a
float: left
to the content, like below:This will cause the
div
to stretch around all of its contents 🙂