overlay heading showing turning color on arrow move

Solved

overlay heading showing turning color on arrow move

Michele113
Excursionist
15 0 15

I have an overlay header in Capital, that shows the header as a white block when moving the mouse across that area. Is there a way to stop that from happening and  keep the image underneath from dissappearing?

Accepted Solution (1)

LitExtension
Shopify Partner
4963 1010 1192

This is an accepted solution.

Hi @Michele113,

Go to Assets > section-header.min.css and paste this at the bottom of the file:

@media (min-width: 721px) {
  .main-header.is-fullbleed:hover {
    background-color: transparent !important;
    box-shadow: none !important;
  }
}

Hope it helps!

LitExtension - Shopping Cart Migration Expert
Check out our Shopify migration app to migrate your online store to Shopify
Contact us:
- Email: contact@litextension.com

View solution in original post

Replies 6 (6)

GabrielS
Shopify Partner
486 107 117

Yes, perhaps through custom coding. You can share your website link for other community members to contribute, or consider to hire a web developeur.

Gabriel Soare | Web Developer
Are you looking to customize your Shopify or to fix a website bug?
You can reach me through my website gabrielsoare.com, DM, or email hello@gabrielsoare.com.
Have I helped you? Like my post.

LitExtension
Shopify Partner
4963 1010 1192

This is an accepted solution.

Hi @Michele113,

Go to Assets > section-header.min.css and paste this at the bottom of the file:

@media (min-width: 721px) {
  .main-header.is-fullbleed:hover {
    background-color: transparent !important;
    box-shadow: none !important;
  }
}

Hope it helps!

LitExtension - Shopping Cart Migration Expert
Check out our Shopify migration app to migrate your online store to Shopify
Contact us:
- Email: contact@litextension.com
Michele113
Excursionist
15 0 15

That worked, thank you! Love that it could go under the minified code.

Cedcommerce
Shopify Partner
718 77 117

Hi @Michele113,

 

<style>

.main-header.is-fullbleed:hover {

background-color: transparent !important;

box-shadow: none;

}

</style>

 

You need to add the above code to your theme.liquid file just before the </head> tag

 

  • Go to your Shopify admin > sales channel > online store
  • Choose capital theme
  • In your layout folder, you will find theme.liquid
  • Find </head> tag by using shortcut ctrl+f
  • Paste the code and save the changes

Hope it'll help, please accept this answer as solution if you find this helpful

 

All the best,
CedCommerce

CedCommerce || Shopify Expert
- Let us know if our reply is helpful for you. Like it.
- Was your question answered? Mark it as an accepted solution.
- For further discussion contact: Email ID- apps@cedcommerce.com
- Whatsapp:- Join Here
Michele113
Excursionist
15 0 15

With this code the image stayed but the header language disappeared. Does it go above or below </head>?

LitExtension
Shopify Partner
4963 1010 1192

Hi @Michele113,

It will be added above </head>

Hope it helps!

LitExtension - Shopping Cart Migration Expert
Check out our Shopify migration app to migrate your online store to Shopify
Contact us:
- Email: contact@litextension.com