Created
April 22, 2016 21:41
-
-
Save barbwiredmedia/9c6d9c91291b16f4520a4634bd1d5e8c to your computer and use it in GitHub Desktop.
WP responsive image within WYSIWYG content
This file contains 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 characters
.main { | |
img[class*="wp-image"] { | |
@include img-responsive; | |
} | |
@include bp-md-max { | |
@include center-block; | |
float:none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@include bp-md-max {} needs to be nested in img[class*="wp-image"]; it applies to img rather than .main.