You are here

autofloat-rtl.css in AutoFloat 6

Same filename and directory in other branches
  1. 6.2 autofloat-rtl.css
  2. 7 autofloat-rtl.css
/**
 * Float images alternately in right-to-left content.
 */

/* Adjust the id or class if your theme uses another to target the node body.*/
.content span.autofloat-odd,
#content span.autofloat-odd {
  float: left;
  margin: 5px 10px 0 0;
}

.content span.autofloat-even,
#content span.autofloat-even {
  float: right;
  margin: 5px 0 0 10px;
}

File

autofloat-rtl.css
View source
  1. /**
  2. * Float images alternately in right-to-left content.
  3. */
  4. /* Adjust the id or class if your theme uses another to target the node body.*/
  5. .content span.autofloat-odd,
  6. #content span.autofloat-odd {
  7. float: left;
  8. margin: 5px 10px 0 0;
  9. }
  10. .content span.autofloat-even,
  11. #content span.autofloat-even {
  12. float: right;
  13. margin: 5px 0 0 10px;
  14. }