Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Blog post

Blog post

Solomond
Explorer
69 2 5

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:

Solomond_0-1712603336631.png

and 'leave comments' below the article is also in white:

Solomond_1-1712603374258.png

 

URL: How Owning A Dog Can Improve Your Mental Health – Hobbster

 

The same is true for the headline on the main Blog Landing Page:

Solomond_2-1712603482017.png

Can anyone help?

rgds

Replies 4 (4)

Moeed
Shopify Partner
6330 1716 2069

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 </body> tag.

<style>
h1.article-template__title {
    color: black !important;
}
</style>

RESULT:

Moeed_0-1712604110592.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


Solomond
Explorer
69 2 5

Thanks Moeed, do you know how to fix the other 2 issues?

Moeed
Shopify Partner
6330 1716 2069

Hey @Solomond 

 

Keep the previous code and add this new code above </style> 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:

Moeed_0-1712658612563.png

Moeed_1-1712658669403.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


Solomond
Explorer
69 2 5

Thank you. Worked perfectly.