Site logo

Archived topic

Full Width Background Color For Headings

7 replies · Started by MMS on November 7, 2022

Viewing posts 1–8 of 8

Hi, Is it possible to format headings i.e. H2 to be center aligned with a solid background color similar to the example in the following link?

I've looked in the usual settings but wonder if this is a custom CSS thing?

https://imgur.com/a/BWuGrPJ

Thanks

Hi there,

Not sure if I fully understand.

Can you link me to the example page so I know exactly what you are trying to achieve?

Hi Simon,

Can you show us your site with the H2?
It can't go full width likely because the content container has paddings set.

You would likely use CSS to add negative margin left and margin right to offset the paddings.

You don't have container padding set, then you only need CSS to add the color:

.single-post h2 {
    background-color: lightblue;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

Change the lightblue to the color code you want.

Thanks, Thats exactly what I was after.

You are welcome :)

This archived topic is closed to new replies.