Skip to content

Instantly share code, notes, and snippets.

@MattSLangford
Last active April 8, 2024 17:36
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 MattSLangford/20f867aed8b8bfb741e4e79103033277 to your computer and use it in GitHub Desktop.
Save MattSLangford/20f867aed8b8bfb741e4e79103033277 to your computer and use it in GitHub Desktop.
Make Tiny Theme Images Full Browser Width
@media (max-width: 700px) {
article img, .e-content img, .p-summary img {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
border-radius: 0 !important;
max-width: none !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment