Skip to content

Instantly share code, notes, and snippets.

@nikahmadz
Forked from oliverdoetsch/resizeImage.css
Created July 10, 2017 09:18
Show Gist options
  • Save nikahmadz/d4e7587725027b8010b3278ee7cda298 to your computer and use it in GitHub Desktop.
Save nikahmadz/d4e7587725027b8010b3278ee7cda298 to your computer and use it in GitHub Desktop.
automatically resize blogger images to fit full blog post area
.post-body img {
width: $(content.width);
height: auto;
margin-left: -1em;
padding: 0;
border: none;
max-width: 100%;
}
.post-body .tr-caption-container {
padding: 0;
}
.post-body .tr-caption-container img {
padding: 0;
display: block;
width: $(content.width);
height: auto;
margin-left: 0;
max-width: 100%;
background: transparent;
border: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment