Red color on hover dropdown menu - Dawn 7.0.1

Hello

I want to add color on the hover on the drop down menu, if you check my page when you move the mouse over the sub menu you will the the color change a bit. I want it to me more visible when you moving around. How can that be arranged?

My url:

www.dekanten.no

Hello @Dekanten ,

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your base.css file and paste the following code below:

.header__submenu .header__menu-item:hover {
    color: #f00 !important;
}

Thanks

1 Like

Hi @Dekanten

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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:
  4. And Save.
.js details > .header__submenu li>a:hover {
    color: red;
}

Result:

I hope it help.

" :glowing_star: Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! :raising_hands: "

1 Like

Hi @Dekanten

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file → Save

.link–text:hover {

color: red !important;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

1 Like

@PageFly-Henry @Made4uo-Ribe @Guleria Thank u all for your lovely support, this works like a charm and iam happy with the result. Thank u so much again. :slightly_smiling_face:

1 Like