Shopify themes, liquid, logos, and UX
Hi,
I want to add a button that says Login to my header instead of the cart on the homepage
just a 1px outline black button.
my site is https://lux360.net
To add a black, 1px outlined "Login" button in place of the cart icon on your homepage header in Shopify, follow these steps:
<button style="border: 1px solid black; padding: 5px 10px;">Login</button>
If you have other questions, I am willing to answer them more.
Best regards,
Daisy
<a href="{{ routes.cart_url }}"
class="navlink navlink--cart"
data-drawer-toggle="drawer-cart">
{% if section.settings.use_icons %}
{{ cart_icon }}
<span class="visually-hidden">{{ 'layout.cart.title' | t }}</span>
{{ cart_status }}
{% else %}
<span class="navtext cart__status__parens">
{{ 'layout.cart.title' | t }}
{{ cart_status }}
</span>
{% endif %}
</a>
this is my code. Can you let me know what to replace thank you
Any colitis for this?
Based on your provided code, if you need to replace the href attribute with a specific cart URL, you can substitute {{ routes.cart_url }} with your actual cart URL. Here's how you can do it:
<a href="https://yourwebsite.com/cart"
class="navlink navlink--cart"
data-drawer-toggle="drawer-cart">
{% if section.settings.use_icons %}
{{ cart_icon }}
<span class="visually-hidden">{{ 'layout.cart.title' | t }}</span>
{{ cart_status }}
{% else %}
<span class="navtext cart__status__parens">
{{ 'layout.cart.title' | t }}
{{ cart_status }}
</span>
{% endif %}
</a>
If your cart URL is https://example.com/cart, update the href like this:
<a href="https://example.com/cart"
class="navlink navlink--cart"
data-drawer-toggle="drawer-cart">
<!-- Rest of the code remains the same -->
</a>
Testing: Always test the updated link to confirm it directs users to the correct cart page without issues.
Hey Community! As the holiday season unfolds, we want to extend heartfelt thanks to a...
By JasonH Dec 6, 2024Dropshipping, a high-growth, $226 billion-dollar industry, remains a highly dynamic bus...
By JasonH Nov 27, 2024Hey Community! It’s time to share some appreciation and celebrate what we have accomplis...
By JasonH Nov 14, 2024