Changing background color on pages

Discussion in 'Figero WordPress Theme' started by hender24, Feb 21, 2013.

Thread Status:
Not open for further replies.
  1. hender24

    hender24 New Member

    Joined:
    Feb 15, 2013
    Messages:
    4
    Likes Received:
    0
    I would like to change the background color on my full-width pages. Possible?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .content-main.fullwidth {
    background-color: yellow;
    }
    Inplace of yellow you can put your required color.
     
  3. hender24

    hender24 New Member

    Joined:
    Feb 15, 2013
    Messages:
    4
    Likes Received:
    0
    Thanks Piyush. That changes the color for the text area, but what about the background color outside of the text area? Right now the text area background is white, and the background outside of that is whitesmoke color. I would like it to be white so it all blends. Is that possible?

    Also, is there a way to delete the thin border around the text area so the text area and side are all blend together?
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    It is not possible to change the background of outside the text area, in a particular page (i.e. fullwidth page). It will change the background of all the pages partially.
    If you still want to change the background than paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    .fullwidth {
    background-color: white ! important;
    border:none;
    }
    .content-container {
    background-color: white;
    }
    This will solve your issue.
     
  5. galesburgpl

    galesburgpl Member

    Joined:
    Apr 18, 2013
    Messages:
    41
    Likes Received:
    0
    I tried to use the above code to remove the border of the content container, but nothing changed. Is there something I'm missing?
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Can you please explain your problem with the help of screenshot, where you want to change the color and also share the link of your website, so that we can give you the exact solution.
     
  7. galesburgpl

    galesburgpl Member

    Joined:
    Apr 18, 2013
    Messages:
    41
    Likes Received:
    0
    Apologies. The above code didn't work for me, but this code did:

    .content-main {
    background-color: white; border none;
    }

    .content-info {
    border: none;
    }

    So I should be all set. Thanks.
     
Thread Status:
Not open for further replies.

Share This Page