Change background color/image?

Discussion in 'SpotMoto WordPress Theme' started by kerristevens, Apr 30, 2013.

  1. kerristevens

    kerristevens Guest

    Joined:
    Feb 13, 2013
    Messages:
    18
    Likes Received:
    0
    Hello Guys,

    Can you please tell me how to change the color and/or background image of the Spotmoto Theme?
    Also the text colors?

    Thanks !
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .body_wrapper {
    background-color: green;
    }
    .advertisement_container {
    background: green;
    }
    .content_bottom_wrapper {
    background: green;
    }
    Inplace of 'green' you can put your color or color code.
     
  3. kerristevens

    kerristevens Guest

    Joined:
    Feb 13, 2013
    Messages:
    18
    Likes Received:
    0
    Thanks !

    However, the contact page footer stays white
    And...
    Each sub page still has a white background in the content section. Any ideas?

    Also how to change footer section background color or image?
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .page_container {
    background: red;
    }
    .footer {
    background: red;
    }
    Inplace of "red" put your color code.
     
  5. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    For the contact page, paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .page_container.contact {
    background-color: red;
    }
    .footer-bottom-wrapper .footer-bottom {
    background: red;
    }
    Inplace of "red" put your color or color code.
     

Share This Page