Where you can achieve what your competitors can’t


Shopify Add Custom Button On Header

Benefits of Adding a Custom Button on the Header in Shopify

Integrating a custom, strategically-placed button directly into your Shopify store’s header provides several valuable advantages:

Visual Engagement

  • Makes your primary call-to-action instantly visible upon page load, naturally attracting customer attention.
  • Clearly differentiates your header from typical Shopify templates, reinforcing your store’s unique visual identity.
  • Enhances overall aesthetics by breaking up header elements, creating balanced visual interest and clarity.
  • Utilizes prime screen real estate effectively, ensuring high visibility and immediate customer engagement.

User Experience

  • Significantly improves usability by offering quick, direct access to important pages (e.g., promotions, best-sellers, contact, or support).
  • Streamlines navigation, reducing the number of clicks required and providing effortless interaction, particularly on mobile.
  • Allows users to quickly identify and complete key actions, simplifying decision-making processes.
  • Enhances intuitive browsing, making the store feel more responsive and user-friendly.

Conversion Optimization

  • Drives increased traffic to targeted pages, directly improving your ability to funnel visitors toward promotions, sales, or lead-generation forms.
  • Encourages impulse actions by strategically positioning compelling calls-to-action prominently at the visitor’s initial point of focus.
  • Reduces abandonment rates by minimizing friction points, creating smoother pathways toward conversion goals.
  • Builds trust and perceived credibility by clearly guiding users toward important content or actions, demonstrating a commitment to seamless shopping experiences.

CODE : header.liquid front of : class=”desktop-localization-wrapper”>

<a href="#" class="custom-button">Our Store 𖡡</a>
{% comment %}
<!-- Designed by OnHOW YouTube Channel - Anas El Medlaoui -->
{% endcomment %}

.custom-button {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.6rem;
  min-height: auto;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
  border-radius: 0.5rem;
  text-decoration: none;
}

.custom-button:hover {
  background-color: #333333 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.header-country-selector {
  display: flex;
  align-items: center;
}

.header__icons.custom-button {
  margin-left: 1rem;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.localization-form__select {
  min-height: auto;
  vertical-align: middle;
}

@media screen and (max-width: 749px) {
  .custom-button {
    font-size: 0.75rem;
    padding: 0.50rem 0.88rem;
    border-radius: 0.2rem;
  }
  
  .header__icons.custom-button {
    margin-left: 0.4rem;
  }
  
  .header--mobile-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header__icons {
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  .header__icons--localization {
    display: flex;
    align-items: center;
    margin-right: auto;
  }
  
  .desktop-localization-wrapper {
    display: flex;
    align-items: center;
  }
}