Twenty Thirteen: fix for right-aligned images breaking the main column layout in small screen sizes. Props obenland, fixes #23994.

git-svn-id: http://core.svn.wordpress.org/trunk@23945 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Lance Willett 2013-04-09 21:43:32 +00:00
parent 3d0c46a0ea
commit 3460979008

View File

@ -2896,13 +2896,13 @@ footer.entry-meta {
/* Collapse oversized image and pulled images after iPad breakpoint. */
@media (max-width: 767px) {
img.alignleft,
.wp-caption.alignleft {
.entry-content img.alignleft,
.entry-content .wp-caption.alignleft {
margin-left: 0;
}
img.alignright,
.wp-caption.alignright {
.entry-content img.alignright,
.entry-content .wp-caption.alignright {
margin-right: 0;
}