You are here

autofloat-rtl.css in AutoFloat 8

Same filename and directory in other branches
  1. 7.2 css/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 .autofloat-odd,
#content .autofloat-odd {
  float: left;
  margin: 5px 15px 0 0;
}

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

File

css/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 .autofloat-odd,
  6. #content .autofloat-odd {
  7. float: left;
  8. margin: 5px 15px 0 0;
  9. }
  10. .content .autofloat-even,
  11. #content .autofloat-even {
  12. float: right;
  13. margin: 5px 0 0 15px;
  14. }