What's your biggest current challenge? Have your say in Community Polls along the right column.

How do fix overlapping header text on mobile?

How do fix overlapping header text on mobile?

MrDunkonthem
New Member
9 0 0

 

As you can see, the main header is overlapping with itself. Is there a way I can fix this? Thanks

MrDunkonthem_1-1732577976581.png

 

Replies 8 (8)

Eric-HAN
Shopify Partner
255 29 27

HI, there

Would you mind sharing your store url?

- Helpful? Please hit Like and mark it as a solution
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me    Buy Me A Coffee
MrDunkonthem
New Member
9 0 0
akshay_bhatt
Shopify Partner
115 11 13

its not working

- Need a Shopify Specialist?
- Custom Design | Advanced Coding | Store Modifications
Email us
MrDunkonthem
New Member
9 0 0

Click the link, then click in the top right corner "login using password" and enter "maibla" press enter 

Eric-HAN
Shopify Partner
255 29 27

pls try below code

@media only screen and (max-width: 600px) {
 
    .videoBoxInfoTitle {
      font-size: 18px; 
      padding: 10px; 
    }
  }
- Helpful? Please hit Like and mark it as a solution
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me    Buy Me A Coffee
MrDunkonthem
New Member
9 0 0

Didn't work when I pasted in the custom CSS for the header section. Do I need to put it in another section?

akshay_bhatt
Shopify Partner
115 11 13

Hi @MrDunkonthem ,

To fix the overlapping header:

add css to the header section

.header-class {
    z-index: 9999;
    position: relative;
    padding: 20px;
    position: sticky;
    top: 0;
}

 save and refresh

 

Got it! If you found my suggestions helpful, please consider liking or marking it as a solution.
Your feedback is appreciated! If you have any more questions or need further assistance, just let me know.

Thanks & Regards
Akshay Bhatt

- Need a Shopify Specialist?
- Custom Design | Advanced Coding | Store Modifications
Email us
MrDunkonthem
New Member
9 0 0

No luck.