I'm using the WooThemes Original News Theme (It was free!) and I'm doing some edits. I have some images inline in my entries and what happens is that the text and images are pretty much right up against each other. I managed to get it fixed (somewhat) when the images are on the right side of the entry by adding a 5px border around the image using this code in the CSS:
.entry img {
padding: 2px 2px 2px 2px;
background:#FFF;
border: solid 5px #FFF;
}
It works on the left, but the right seems to get pushed underneath the text.
But I just realized that my images have a caption box around them using the class "wp-caption," could that be a possible source of my problems?
Appreciate the help!