Modifying the header text.

Solved

Modifying the header text.

CreatorTim
Navigator
471 1 71

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

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10211 2427 3078

This is an accepted solution.

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;
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1734644183933.png

     

 

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

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.

View solution in original post

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
10211 2427 3078

This is an accepted solution.

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;
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1734644183933.png

     

 

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

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.
CreatorTim
Navigator
471 1 71

Thank you! It works!