Sidekick Install Code
{% content_for 'blocks' %}
{% schema %}
{
"name": "Custom Blocks",
"blocks": [
{ "type": "@theme" },
{ "type": "@app" }
],
"presets": [
{
"name": "Custom Blocks"
}
]
}
{% endschema %}
CTA Button in Shopify Header 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>
Remove Cart & Account Icon - Horizon Theme Code
.header-actions__cart-icon {
display: none !important;
}
.account-button {
display: none !important;
}