Site logo

[Resolved] How to change the Background colour of Heading H1 and others

Home Forums Support [Resolved] How to change the Background colour of Heading H1 and others

Home Forums Support How to change the Background colour of Heading H1 and others

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2474644
    Manpreet

    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?

    #2475063
    Ying
    Staff
    Customer Support

    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;
    }
    #2477059
    Manpreet

    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?

    #2477092
    David
    Staff
    Customer Support

    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;
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.