Hello,
On my header when I click Bedroom or Living Room I want it to take me to the collection I’ve made that has all the items I’ve added into it. Yet when I click it it’s unresponsive. I’ve linked the collection yet it still doesn’t open up any idea how to change with code?
Store is Forwardfurniture.ca
@WraithAm
Yes, this is code customization work and the Bedroom meta tag apply all collections or products.
Thank!
Hello @WraithAm
Open your admin panel and click on Online store >> Edit code >> open header.liquid file.
In header.liquid file scroll down and go to 406 no. line
<span {%- if link.child_active %} class=“header__active-menu-item”{% endif %}>{{ link.title | escape }}
And replace this code with below code.
<span {%- if link.child_active %} class=“header__active-menu-item”{% endif %}>{{ link.title | escape }}
Thank you
Hey, so that worked thank you. However can you make it so it doesn’t show the line underneath and it’s text color isn’t blue.

@WraithAm
Add this code below of base.css file.
.header__menu-item a {
color: black;
text-decoration: none;
}
If our solution helps you then please mark it as accepted solution.
Thank you so much you were a huge help, one last thing is now all the other menus are more of a grey font color well these four are black. How would I change the others to black as well. Thank you so much!

@WraithAm
Add this code below of base.css file.
.header__menu-item {
color: black;
}
If our solution helps you then please like our comments.
Thank you
Worked thank you so much!!!