#old-glory-cta {
width: 900px;
max-width: 100%;
display: block;
margin: 0 auto;
}
#old-glory-cta img {
width: 100%;
height: auto;
display: block;
}
(function() {
var params = new URLSearchParams(window.location.search);
var utmSource = params.get(“utm_source”);
var utmMedium = params.get(“utm_medium”);
var utmCampaign = params.get(“utm_campaign”);
// Only rewrite if the visitor arrived with at least a utm_source
if (utmSource) {
var shopUrl = “https://epochshop.com/products/old-glory-the-history-of-our-nations-flag-poster”
+ “?utm_source=” + encodeURIComponent(utmSource)
+ (utmMedium ? “&utm_medium=” + encodeURIComponent(utmMedium) : “”)
+ (utmCampaign ? “&utm_campaign=” + encodeURIComponent(utmCampaign) : “”);
var link = document.querySelector(“#old-glory-cta a”);
if (link) link.href = shopUrl;
}
})();
…