• Resolved tammotheus

    (@tammotheus)


    Hi there,

    don’t wanna bug anyone, but I’ve one more thing…

    How do I change the background color of the footer area?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Go to Appearance > Customize > Additional CSS and add the following:

    
    .site-footer {
       background: #ff0000 !important; /* Please change color as per requirement */
    }
    

    Hope this will help.

    Moderator Kathryn Presner

    (@zoonini)

    Thanks for helping out, Subrata Sarkar.

    I just want to mention that !important should be avoided in CSS, as it can cause problems when adding further custom CSS. It can usually be eliminated by choose a more specific element.

    For Toujours, this should do the trick:

    #colophon {
         background-color: #bb00bb;
    }

    Replace the test purple colour code with anything you like.

    Hi @zoonini, thank you for your appreciation! Regarding !important I agree with you.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Footer Area Color Change’ is closed to new replies.