Hello! So… I’m trying to have a dark and a light theme for my website. I’m currently working on my site and I think I have it pretty dialed in but I’ve noticed that my country/region and my variant picker and quantity selector aren’t showing up due to the color section is backwards to change those particular ones (hope this makes sense). I am also wanting to remove the lines in the corners of the quantity selector. I should also mention it’s not a current active theme. Thank you so much!
URL: moderndayrags.com
Hi @moderndayrags
Can you provide detailed information about what you want to do (screenshot or video)? Then, we will check it and suggest you a solution if possible.
Hi @moderndayrags
It seems that you’re not publishing the theme with problems to the live view, so we can not check the CSS. We see that the theme you’re using on the live view is another theme.
Please let us know with more information.
They are the same theme just a black background.
Hi @moderndayrags
Please go to Online store > Themes > Edit code. Find the file “base.css”, scroll down to the bottom, and add this code:
.select__select,
.quantity,
.localization-selector {
color: black!important;
}
I hope that it works for you.
1 Like
Thank you! It worked for the font but do you know how to get those pesky small corner black lines off the quantity selector (pic above)? Thank you!
Hi @moderndayrags
For the border color of the quantity button, it is likely that the added code caused errors. Because there is no CSS here, we can not check it for you. If you have further information, please provide us.
It has been there since before the code. I have theme active if you wanna take a look?
URL:moderndayrags.com
Hi @moderndayrags
Please follow our previous instructions and go to the base.css file. Then, add this code at the end of the file:
.quantity .icon {
color: black!important
}
.quantity {
border: none!important;
}
I hope that it will work for you.