Home Forums WordPress Themes – Premium Encase Pro Background color

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #41188
    Gary Pfeffer
    Participant

    Hi,

    Just wondering where in the css I can change the background color of the page, particularly the main body where the page content goes. There doesn’t seem to be a place to do this in the customization menu.

    thanks,

    #41277
    Sushil Adhikari
    Moderator

    Hi there,

    You can add this following css on child theme style.css or additional css section of customizer[if you are using WordPress version 4.7]

    #content-wrapper {
        background-color: red !important;
    }

    Note: Now background-color value is red please change the background-color value as per your requirement.YOu can see lost of color value here: http://www.w3schools.com/cssref/css_colors.asp

    Thanks

    #41288
    Gary Pfeffer
    Participant

    I actually had tried that in the styles.css in the child theme. But it didn’t work. I used your snippet above, so I am expecting to see red (lol). But, it’s not changed on any pages at all. Maybe you can take a look at the page source and see what you can see.

    Thanks.

    #41330
    Sushil Adhikari
    Moderator

    Hi Gary Pfeffer,

    first give background color for body:

    body {
    	background-color: red;
    }

    On the homepage elements are divided in to section so you need to provide background color for each section:

    -> for patronize me section:

    #header #header-meta {
        background-color: red;
    }

    ->

    body.home #columns {
        background: red;
    }

    Note: While changin color you may have to make many custom changes so it will be better if you take help from developer

    Let us know if you have any question or queries regarding to our Styled Themes

    Thanks

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.