How to Add a CTA Button in Shopify Header (Using Horizon Theme)
Video:
Code:
<a class="button button--primary hide-on-mobile" href=pages/contact>
Email Us Today
</a>
<style>
@media only screen and (max-width: 768px) {
.hide-on-mobile {
display: none;
}
}
</style>