Font and background colors

Discussion in 'Photomaker WordPress Theme' started by sangermike, Aug 16, 2014.

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

    sangermike Member

    Joined:
    Mar 9, 2014
    Messages:
    311
    Likes Received:
    5
    For all the other pages (except the homepage), how do I set the bg color like for example black and offset with white fonts? Thanks.
     
  2. PankajK

    PankajK Support Staff

    Joined:
    Aug 8, 2014
    Messages:
    93
    Likes Received:
    5
    Hi sangermike
    There is an option under Dashboard >> Appearance >> Theme Option >> General >> Background
    From here you can upload a background image, however if you want to set a color just add this code to you Custom CSS.
    Go to Dashboard >> Appearance >> Theme Option >> Style >> Custom CSS

    Code:
    body {
      background: #000;
      color: #fff;
    }
    h1, h2, h3, h4, h5, h6 {
    color: #fff;
    }
    
    #000 is for black, type your desired color hash code here.
    color: #fff; is for font color. Change it according to your wish.
    Hope it may help you.
    Thanks
    PankajK
     
  3. sangermike

    sangermike Member

    Joined:
    Mar 9, 2014
    Messages:
    311
    Likes Received:
    5
    Great. Thanks
     
Thread Status:
Not open for further replies.

Share This Page