Archived topic
How to change the Background colour of Heading H1 and others
3 replies · Started by Manpreet on December 27, 2022
Hi there,
I want to change the background colour of Heading H1, but did not find any option for it. How can I change it?
Hi there,
You can try adding this CSS to customize > additional CSS, change blue to the color code you are going to use:
h1 {
background-color: blue;
}
Can you also give me the CSS to change the background colour of all headings?
Also, Can I make the Text of the Heading H1 in the centre?
Hi there,
to center the H1 with a background use:
/* H1 centered with background */
h1 {
background-color: blue;
text-align: center;
}
For all the other headings:
/* lower headings with background */
h2, h3, h4, h5, h6 {
background-color: red;
}
