Adding a button to my header - Symmetry theme

Hey all! I am trying to add a button with a link to my navigation header. Preferably to the to left of the Account icon. Can someone help?!

www.dcjltd.com

Thank you!

Hi @AliciaGem ,

  • Go to ThemesEdit code → find the header file

  • Find the code containing the code “logo-area__right__inner” and it will look like this:

<div class="logo-area__right__inner">
.........
</div>
  • Add the following code right after the tag
<a class="header-account-link" href="#" aria-label="Account">
                <span class="header-account-link__text desktop-only">Button</span>             
</a>
  • Where “href” is the path you want, you can replace the word “Button” with the word you desire.

  • Results you will achieve: