Last active
January 29, 2024 21:40
-
-
Save garek007/e315bdbac0f2b88047d2c86b7aa29c3a to your computer and use it in GitHub Desktop.
Responsive Email Header
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 to the head tag of your template within the CSS style block | |
@media only screen and (max-width: 640px) { | |
.hero-banner { | |
background-size: 120% !important; | |
background-position: left 45% !important; | |
} | |
} | |
Remove this line and everything above after pasting the CSS into the head tag | |
%%[ | |
Set @imageURL = "YOUR IMAGE URL HERE" | |
Set @altTag = "YOUR ALT TAG" | |
Set @width = "600" | |
]%% | |
<!--[if mso]> | |
<table width="100%" cellspacing="0" cellpadding="0" role="presentation"> | |
<tr> | |
<td align="center"> | |
<img src="%%=v(@imageURL)=%%" alt="%%=v(@altTag)=%%" width="%%=v(@width)=%%" style="display: block; padding: 0px; text-align: center; border: 0px solid transparent; height: auto; width: 100%;"> | |
</td> | |
</tr> | |
</table> | |
<div style="display:none"> | |
<![endif]--> | |
<div class="hero-banner" style=" | |
width: %%=Concat(@width,'px')=%%; | |
height: 125px; | |
background-size: %%=Concat(@width,'px')=%%; | |
background-repeat: no-repeat; | |
background-position: left center; | |
background-image: url('%%=v(@imageURL)=%%')"> | |
</div> | |
<!--[if mso]> | |
</div> | |
<![endif]--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment