Hi everyone I recently coded to change the header to black for the debut theme however it is now making my drop down colour white the text. It also is making the icon on mobile black so I cant click to see drop down.
Anyone know some code to fix? Thankyou
https://recharge-apparel-3038.myshopify.com/
1 Like
@kaidickson
oh sorry for that issue can you try this code
- Go to Online Store->Theme->Edit code
- Asset->/theme.css ->paste below code at the bottom of the file.
@media (min-width: 750px) {
span.site-nav__label, .site-header__cart, .site-header__search, .site-header__account, .site-header__icon .icon-search, button.btn--link.site-header__icon.site-header__menu.js-mobile-nav-toggle.mobile-nav--close
{
color: #000000 !important;
}
}
@media (max-width: 749px) {
.site-header__icons .btn--link, .site-header__icons .site-header__cart {
color: #fff !important;
}
}
Thankyou for this!
Can you help me a bit more. It makes my dropdown menu button the same colour as the heading so customers on mobile cant see where to open the menu.