Change link highlight in footer & header

Solved
blakelyhi
Excursionist
60 0 3

I have changed my navigation dropdown links to no longer show an underline on hover and I would like to emulate this same design for the header/main nav as well as the footer links. Any help targeting these would be appreciated. Site url: https://afca7f-2.myshopify.com/

 

This is the css I used to target the dropdown links:

.meganav__inner .meganav__primary .meganav__nav h4 {
    color: #8c8c8c;
  font-size: 14px !important;
}
.meganav__nav a:hover {
    color: #191919 !important;
    text-decoration: unset !important;
  font-size: 14px !important;
}

 

Accepted Solution (1)
makkaomakka
Shopify Partner
875 170 182

This is an accepted solution.

Hi @blakelyhi ,

 

You can use bellow CSS to remove underline from the footer links.

.footer__links a {
    text-decoration: none!important;
}

If you require further help to optimize your store, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Makka

 

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

View solution in original post

Replies 4 (4)
makkaomakka
Shopify Partner
875 170 182

This is an accepted solution.

Hi @blakelyhi ,

 

You can use bellow CSS to remove underline from the footer links.

.footer__links a {
    text-decoration: none!important;
}

If you require further help to optimize your store, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Makka

 

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

blakelyhi
Excursionist
60 0 3

Thank you! What would remove the underline on hover with the main nav links (Goods, Explore, Reroute)? 

blakelyhi
Excursionist
60 0 3

Hi again, I would love to remove the underline on hover for the main nav links in header (Goods, Explore, ReRoute), can you help target that as well? 

makkaomakka
Shopify Partner
875 170 182

Hi @blakelyhi ,

 

The below css will remove hover underline from the header menu items.

.header__links.header__links-primary > ul > li > [data-link] .link-hover::before {
    display: none;
}

 

If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Makka

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".