Hover Effect Design Adjustment

Hover Effect Design Adjustment

CreatorTim
Explorer
314 1 48

Hi, I need to adjust the design of the hover effect.

 

Here’s how it currently looks on my store:

CreatorTim_0-1734132122341.png

 

And this is how I want it to look:

CreatorTim_1-1734132135641.png

 

So, I need:

  1. Remove the underline when hovering.
  2. Remove the arrow on the right of "products"
  3. Round the corners of the dropdown menu when it appears.
  4. Add a smooth animation effect so that when you hover over it, it slides out nicely—exactly like it does here when you hover over the store: https://tomnoske.store/

 

And here is my store URL: https://1049xn-ya.myshopify.com/

 

Thanks for any help,
Tim

Replies 2 (2)

devcoders
Shopify Partner
764 95 191

Hello @CreatorTim 

Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css Add the provided code at the end of the file.

 

 

details[open]:hover>.header__menu-item{
  text-decoration: none;
}
details[hover]:hover .header__menu-item {
      text-decoration: none;
}
.header__menu-item svg.icon.icon-caret {
    display: none;
}
details[open]>.header__submenu{
  border-radius: 10px;
}
.header__menu-item:hover:after{
  display:none;
}

 

 

devcoders_1-1734149595218.png

 

 

Shopify Developer: Helping eCommerce Stores

If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!
CreatorTim
Explorer
314 1 48

Hey, I really appreciate your help. It looks good, but I’d still need a few more tweaks.

 

First, I’d like to bring back the dot. I only wanted to remove the underline and the arrow, but I wanted to keep the dot. Also, I want the dot only on the menu items, not the sub-items.

 

The second thing I want is to reduce the width of the sliding product menu. There’s too much space on the right side; I want it to have the same amount of space on the right as on the left.

 

The last thing is that I want the spacing between the menu items to be the same everywhere. Since you removed the arrow, it didn’t adjust, so I’d like the spacing to be consistent throughout.

 

My store URL: https://1049xn-ya.myshopify.com/

 

Thanks a lot!
Tim