Last active
August 29, 2015 14:16
-
-
Save wmakley/91258b0bb2e0c3aa313b to your computer and use it in GitHub Desktop.
Revisions
-
William Makley revised this gist
Feb 26, 2015 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,9 @@ /* Make wymeditor-inserted images appear correctly in front-end. Tweak margins as needed. */ .image-align-left { float: left; margin: 10px 20px 0 10px; } .image-align-right { float: right; margin: 10px 0 10px 20px; } -
William Makley created this gist
Feb 26, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ /* Make wymeditor-inserted images appear correctly in front-end. Tweak margins as needed. */ img.image-align-left { float: left; margin: 10px 20px 0 10px; } img.image-align-right { float: right; margin: 10px 0 10px 20px; }