In regards to the PM
You still haven't wrapped a div around the two lines of text.
Code:
<p><i>Black Gucci Shoes</i> content Black Gucci Shoes<br></p>
I wrap a div around that, aka <div class="sexy"> and then add float:left to the div containing the image. You don't have a class on it otherwise I would tell you the specific code
. Last but not least, you need to go to the parent, and add overflow:hidden; to that to contain the now-floated-children.
Code:
<div class="post" id="post-73" style="
overflow: hidden;
">
That'd the element, and I added in the style="overflow:hidden". Move taht to the stylesheet and reference it another way (I'm guessing .post is too generic and post-73 won't apply to all the other posts in the future, so add another class to it...)
Bookmarks