Blog post

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

Hey @Solomond

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. 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?

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.