marET
June 17, 2023, 6:25am
1
Hello,
i managed to change the background color of the page to black with the following code change on base.css
#MainContent {
background: #121212 !important;
}
Now the text doesnt show up at all because the text color is black also
How do i change the color text to white? So its visible everywhere
Im on Dawn Theme
Thank you in advance!
Moeed
June 17, 2023, 6:32am
2
Hey @marET
Kindly share your Store URL and Password if enabled
marET
June 17, 2023, 6:37am
3
Moeed
June 17, 2023, 6:50am
4
Hey @marET
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag.
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
1 Like
marET
June 17, 2023, 7:07am
5
It worked for the most part ,thank you!
Although still on cart when you add a product , some of the text is still black (quantity ,final price etc)
Also on catalog the tittles + prices of the products
Moeed
June 17, 2023, 7:22am
6
Hey @marET
Add this code in the code I provided above tag
.card__heading {
color: white !important;
}
.price {
color: white !important;
}
.cart-item__name {
color: white !important;
}
.quantity {
color: white !important;
border: white solid 1px;
}
button.quantity__button.no-js-hidden {
color: white !important;
}
cart-remove-button .button {
color: white !important;
}
span.price.price--end {
color: white !important;
}
h2.totals__subtotal {
color: white !important;
}
h1.title.title--primary {
color: white !important;
}
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
2 Likes