I have an issue in footer section in Dawn theme, when I check in desktop the manu columns pages tax color white automatic but when I check mobile it didn’t problem
I select scheme 1 color
Which means background: white
Text black so how I fix this problem?
1 Like
Hi @amjadali01
It seems like you change the font color on the menu before which also effect the footer.
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.footer__blocks-wrapper .list-menu__item {
color: black !important;
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
1 Like
thanks its working but i want manu section text dark black color
Add this code then.
Same instruction.
.menu-drawer__menu.has-submenu .list-menu__item{
color: black !important;
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like