Hi, I’ve created a blog post and the article header and footer font is white against a white background, when it should be black like the rest of the page:
and ‘leave comments’ below the article is also in white:
URL: How Owning A Dog Can Improve Your Mental Health – Hobbster
The same is true for the headline on the main Blog Landing Page:
Can anyone help?
rgds
Moeed
April 8, 2024, 7:21pm
2
Hey @Solomond
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.
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Thanks Moeed, do you know how to fix the other 2 issues?
Moeed
April 9, 2024, 10:31am
4
Hey @Solomond
Keep the previous code and add this new code above in theme.liquid file
.article-template__comment-wrapper h2 {
color: black !important;
}
.field__label, .customer .field label {
color: black !important;
}
.field__input, .customer .field input {
border: solid 1px black !important;
}
h1.title--primary.scroll-trigger.animate--fade-in {
color: black !important;
}
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
1 Like
Thank you. Worked perfectly.