What's your biggest current challenge? Have your say in Community Polls along the right column.

Get rid of lines on when menu is opened and add arrow animation effect when an option is hovered

Solved

Get rid of lines on when menu is opened and add arrow animation effect when an option is hovered

flammagreg
Trailblazer
276 0 39

Hi guys,

 

Website: seraneeva.com

 

1. How can I remove the separator lines when the menu icon is clicked? Pic for reference

 

Screenshot 2024-05-28 at 12.25.00 PM.png

2. How can I add an arrow animation effect to option when they are hovered in the menu?? Pic for reference "new in" is being hovered

Screenshot 2024-05-28 at 12.26.12 PM.png

 

Here is code I used to add the arrow to my newsletter signup, but only want the arrow to appear on hover in menu:

 

<svg class="is-inversed" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M6 12L10 8L6 4" stroke-width="1.5" stroke-linejoin="round" stroke="#fff">"</path></svg>

 

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
9131 2180 2688

This is an accepted solution.

Hi @flammagreg 

To remove the border. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

.mobile-nav__item:after, .mobile-nav.locale--mobile:after, .mobile-nav__logo-title--inner {
    border: none !important;
}
#NavDrawer .mobile-nav-grid-container .mobile-nav--footer {
    -webkit-box-shadow: unset !important;
}

 

And save. 

For adding arrow, that needs a developer to add the svg code. You may add the svg by css but still needs the function of the arrow inside the store. 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

View solution in original post

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
9131 2180 2688

This is an accepted solution.

Hi @flammagreg 

To remove the border. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

.mobile-nav__item:after, .mobile-nav.locale--mobile:after, .mobile-nav__logo-title--inner {
    border: none !important;
}
#NavDrawer .mobile-nav-grid-container .mobile-nav--footer {
    -webkit-box-shadow: unset !important;
}

 

And save. 

For adding arrow, that needs a developer to add the svg code. You may add the svg by css but still needs the function of the arrow inside the store. 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
flammagreg
Trailblazer
276 0 39

Would you be able to help with the arrow animation?