I have installed your module and got it running but now I have a preview of a video (YT) in a teaser. Is it possible to have my text flow around it?

Many thx

Theo Richel

Comments

aaron’s picture

Title: Text runaround » Examine wrapper classes
Component: Documentation » Miscellaneous
Assigned: Unassigned » aaron
Category: support » feature

I might need to add some class wrappers to the module to make that type of thing easier.

For now, you'll need to find the class being use.

For instance, you might see:

<div class="field field-type-video-cck field-field-video">

you would add the following to style.css. basically, a float, and set w/h (because embedded objects don't float properly otherwise, i believe, though i could be mistaken off hand).

.field-field-video {
  float: left;
  width: 255px; /* replace with your video width */
  height: 210px; /* replace with your video height */
}

I'll turn this into a feature request to examine the field wrappers.