Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Image Align and Wrap Issues WordPress

  • SOLVED

I am still going through the CSS to clean it up, but while I am doing that, I need to have an image align and wrap issue solved.

If you see in http://beta.just-ask-kim.com/fanpageengine-launches-new-modular-facebook-fbml-generator/ , the words in the post are shoved down, instead of wrapping and do not look awkward.

Any solution for this. I am sure this is not just an image issue on alignright because further down the post, there is an image with alignleft too.

(Oh, and the theme is on Thesis... just in case)

Answers (2)

2011-09-18

Christianto answers:

Hi,

I think you should delete clear:both property located in custom.css (thesis_18-3/custom/custom.css) line 665 and line 1076.

the selector is:
.custom .format_text p {
margin: 0 0 10px;
text-align: justify;
<strong>clear: both;</strong>
}


Hope this help..


Nile Flores comments:

thank you!

2011-09-18

Grégory Viguier answers:

Hello.

In your /custom/custom.css file, line 1076, replace :

.custom .format_text p {
clear: both;
margin: 0 0 10px;
text-align: justify;
}

By :

.custom .format_text p {
clear: none;
margin: 0 0 10px;
text-align: justify;
}


Nile Flores comments:

thanks... I awarded to both since you were a couple minutes apart.