Skip to content

Instantly share code, notes, and snippets.

@ambercouch
Last active February 4, 2016 10:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ambercouch/9563683 to your computer and use it in GitHub Desktop.
Save ambercouch/9563683 to your computer and use it in GitHub Desktop.
Sass image alignment placeholder for wordpress themes
%post__img{
img, .wp-caption{
display: block;
max-width:100%;
height: auto;
overflow: hidden;
&.alignleft{
float: left;
margin: 0.5em 1.5em 0.5em 0.5em ;
}
&.alignright{
float: right;
margin: 0.5em 0.5em 0.5em 1.5em;
}
&.aligncenter{
margin: 0 auto;
text-align: center;
}
.wp-caption-text{
text-align: center;
margin-bottom:0;
font-size:0.8em;
padding-bottom: 0.4em;
}
img{
margin:5px auto;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment