Modifying the header text.

Hi guys,

I’d like to remove the animation from the header so that when I hover over any menu item or when I’m in a specific sectionm for example “HOME”, the color doesn’t change.

I already have a dot decoration added in the header, and I’d like to keep that. I just want to remove the color change on hover and when I’m in a specific section.

After that, I’d like the text to appear slightly more prominent—not fully bold, just subtly emphasized.

I’d like everything to look like it does here: https://tomnoske.store/

And here’s my store URL so you can check how it currently works: https://1049xn-ya.myshopify.com/

Thank you for your help,
Tim

1 Like

Hi @CreatorTim

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:
.header__menu-item {
    color: black !important;
    opacity: 1;
    font-weight: 500;
}

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

1 Like

Thank you! It works!