Forum Moderators: not2easy
Simple answer- I don't know. ;) I know it doesn't make any sense...
They just weren't displaying correctly (they were displaying on top of the text instead of letting the text wrap around them). So as a measure of desperation I put in position: position relative and they now display just fine. I think it may have had something to do with the text being only a little bit larger than the image it was trying to wrap around. But the float attribute along with the position relavive seems to have done the trick.
Here's the code (with the display: block- I've never seen that attribute b4):
<span class="is_contentBody">
<img src="images/myimage.jpg" border="1px" width="45" height="45" style="float: right; position: relative; top: 5px;margin-left:5px;display:block;">
I'm a bit of content short and stout. Here's my handle here's my snout. I'm a bit of content short and stout. Here's my handle here's my snout.
<a href="#" class="is_contentLink">Click here</a></span>
<edited for clarity>