Last active
June 12, 2020 16:54
-
-
Save ryandejaegher/576ab151cc26cba9bbeedc3065484897 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| // Add this code to Settings -> Advanced -> Code Injection -> Footer | |
| <script> | |
| window.addEventListener('load', function(){ | |
| var getBleedImages = document.querySelectorAll('img[alt*="bleed"]'); | |
| getBleedImages.forEach(item => item.parentNode.parentNode.classList.add('full-width')); | |
| }); | |
| </script> |
This file contains hidden or 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
| /* Add this code to Design -> Custom CSS */ | |
| .full-width { | |
| margin-left: calc(~"50% - 50vw") !important; | |
| margin-right: calc(~"50% - 50vw") !important; | |
| max-width: unset !important; | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment