I have created a custom content type using cck and image field. The image uploads fine, and I've used a css class to float the image to the right, but the text from the body does not wrap around the image. How would I go about making the text wrap around the image?

Thank you.

Comments

quicksketch’s picture

I generally don't help with theming requests like this. ImageFields do not have any special formatting that would require anything beyond basic CSS to float them to the left or right.

joslinn’s picture

Could you help me identify what CSS needs to be done? I'm not sure why it's not working.

quicksketch’s picture

In your theme's style.css file:

.field-field-[field_name] {
  float: right;
}

Replace [field_name] with the name of the field.

quicksketch’s picture

Status: Active » Closed (fixed)