• I’m not having any luck changing the background color on the content pages of my site.

    I have changed all of the theme backgrounds to black with white text and I want to do the same to the pages but can’t get anything to stick.

    Any suggestions are appreciated. Website is: seattleicecreamtruck.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello @rhettrussell,

    I you want to change pages background color then just apply following css to your custom css file inside child theme or in style.css file of child theme :

    body .site {
      background: #bec7c9 none repeat scroll 0 0;
    }

    Change Background with hexa code color as you desire.

    Regards

    Thread Starter rhettrussell

    (@rhettrussell)

    I plugged that snippet in to the Custom CSS and it works for the background of the site.

    But I’m trying to change the background of the content pages.

    Hello @rhettrussell,

    Can you please more clear about which content pages you are talking about,
    Please share URL as well of those content pages.
    And if you want to change background of all pages except home page then apply css given below.

    body.page .hfeed.site:not(.home) {
      background: pink none repeat scroll 0 0;
    }

    Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘changing background color on pages’ is closed to new replies.