mobile header issue

Solved

mobile header issue

Fayed
Shopify Partner
36 0 1

Heading background color and text color are correct in desktop view. But text color is showing black/invisible in mobile view, everything is perfect in theme setting. 

 

Website link : https://a16843-4.myshopify.com/

Password: 1234
Can anyone help me with this

Accepted Solution (1)

Vinsinfo
Shopify Partner
491 167 172

This is an accepted solution.

@Fayed Please follow below steps to change the header icon color for mobile. Let me know whether it is helpful for you.

 

1. From admin go to "Online Store" -> "Themes".
2. Click "Customize" button from the current theme.
3. Click "Header" and paste the below code in the "Custom CSS" field and save changes.

 

.menu_moblie svg path {
    fill: #FFFFFF !important;
}
.menu_moblie .menuleft .iconmenu span {
    background: #FFFFFF !important;
}

 

Vinsinfo_0-1715344956871.pngVinsinfo_1-1715345027070.png

 

Result will be like,
Vinsinfo_2-1715345093501.png

 

Please provide your support by click "Like" and "Accepted" if our solution works for you. Thanks for your support.
Please reach out to bizdev@vinsinfo.com for any enquires related to Shopify.
Our Services: Custom Theme Development, Theme Customization, Custom Feature Implementation, Data Migration, Custom APP Development, Website Optimization and Google Merchant Center Support

View solution in original post

Replies 3 (3)

Huptech-Web
Shopify Partner
1169 234 264

Hello! @Fayed  Please follow these steps to add this CSS code:

1. Go to your Online Store
2. Click on "Themes"
3. Select "Edit code"
4. Open your CSS file. engo-customizes.css file, open that instead.
6. replace the following code.

 

 

 

@media only screen and (max-width: 768px){
.menu_moblie .menuleft .iconmenu {
    color: #fff;/* change */
}
.menu_moblie .menuleft .iconmenu span {
    background: #fff; /* change */
}
.menu_moblie .menuright svg {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7420%) hue-rotate(105deg) brightness(116%) contrast(92%);/* change */
}
}

 

 

 

 Let me know if you need further assistance.

If you found this response helpful, please do like and accept the solution. Thanks!
Need support with Customizing your Shopify store?
Feel free to contact me at info@huptechweb.com or Visit our website Huptech Web.
Instant Shortcode Builder: Integrate customizable UI features anywhere in your store - No coding knowledge required

Vinsinfo
Shopify Partner
491 167 172

This is an accepted solution.

@Fayed Please follow below steps to change the header icon color for mobile. Let me know whether it is helpful for you.

 

1. From admin go to "Online Store" -> "Themes".
2. Click "Customize" button from the current theme.
3. Click "Header" and paste the below code in the "Custom CSS" field and save changes.

 

.menu_moblie svg path {
    fill: #FFFFFF !important;
}
.menu_moblie .menuleft .iconmenu span {
    background: #FFFFFF !important;
}

 

Vinsinfo_0-1715344956871.pngVinsinfo_1-1715345027070.png

 

Result will be like,
Vinsinfo_2-1715345093501.png

 

Please provide your support by click "Like" and "Accepted" if our solution works for you. Thanks for your support.
Please reach out to bizdev@vinsinfo.com for any enquires related to Shopify.
Our Services: Custom Theme Development, Theme Customization, Custom Feature Implementation, Data Migration, Custom APP Development, Website Optimization and Google Merchant Center Support
Fayed
Shopify Partner
36 0 1

Thanks for the easy solution.