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

Topic summary

A user seeks help with two menu customization issues on their Shopify store (seraneeva.com):

1. Removing separator lines in mobile menu:

  • Lines appear between menu items when the menu icon is clicked
  • A solution was provided using CSS code to be added to the theme’s stylesheet (base.css, style.css, or theme.css)
  • The CSS targets .mobile-nav__item:after and related elements to remove borders and box shadows

2. Adding arrow animation on hover:

  • User wants an arrow effect to appear when hovering over menu options (similar to their newsletter signup)
  • They already have SVG code for the arrow but need help implementing it
  • The responder noted this requires a developer to properly add the SVG code and maintain arrow functionality

Status: The border removal issue has a working solution. The arrow animation remains unresolved, with the original poster asking if the responder can assist further with the implementation.

Summarized with AI on November 9. AI used: claude-sonnet-4-5-20250929.

Hi guys,

Website: seraneeva.com

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

  1. 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

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

"

1 Like

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!

1 Like

Would you be able to help with the arrow animation?