How can I modify and center the color of my blog title?

How can I change the color of the word Blog and the title of each blog post?

And how can I center the word Blog? See below.

Hi,

I will advise you to only change code when you know something about it!

You could add some code to make this possible.

Online Store → Theme’s → Actions → Code Editor → blog-template.liquid

Search for the HTML tag:

{{ blog.title }}

Chage that code with something like this:

{{ blog.title }}

After you’ve done that save and search for:

theme.scss.liquid

At the bottom of that file you could add something like this:

.colored-title {

color: #FF90CC;

text-align: center;

}

Now you’ve changed the color and centered your title " Blog "

You can also change a title in whatever color you want multiple ways.

Take a look at Metafields in your settings.

Welcome to shopify community.

Please share your store URL and if your store is password protected then please provide password too.

Thank you.

@Joeri1

I don’t see blog-template.liquid listed…