autofloat.css in AutoFloat 8
Same filename and directory in other branches
/** * Float images found in the body text alternately right and left. */ /* Adjust the id or class if your theme uses another to target the node body.*/ .content .autofloat-odd, #content .autofloat-odd { float: right; /* LTR */ margin: 5px 0 0 15px; /* LTR */ } .content .autofloat-even, #content .autofloat-even { float: left; /* LTR */ margin: 5px 15px 0 0; /* LTR */ }
File
css/autofloat.cssView source
- /**
- * Float images found in the body text alternately right and left.
- */
-
- /* Adjust the id or class if your theme uses another to target the node body.*/
- .content .autofloat-odd,
- #content .autofloat-odd {
- float: right; /* LTR */
- margin: 5px 0 0 15px; /* LTR */
- }
-
- .content .autofloat-even,
- #content .autofloat-even {
- float: left; /* LTR */
- margin: 5px 15px 0 0; /* LTR */
- }