Changing Font Color through whole theme

Discussion in 'Compass WordPress Theme' started by stephnana1982, Apr 23, 2015.

  1. stephnana1982

    stephnana1982 New Member

    Joined:
    Apr 22, 2015
    Messages:
    29
    Likes Received:
    0
    Is there a way to change the font color throughout the whole theme?
     
  2. sameerwalkar

    sameerwalkar Guest

    Hello,

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard

    Code:
    h1,h2,h3,h4,h5,h6,a,p{
    color: #E53535 !important;
    }
    Note: you can put your own color code as per your need.

    Hope it will solve your issue.
     
  3. stephnana1982

    stephnana1982 New Member

    Joined:
    Apr 22, 2015
    Messages:
    29
    Likes Received:
    0
    Hi, Thank you! But what if I want to slider font and the footer font to stay white?
     
  4. sameerwalkar

    sameerwalkar Guest

    Hello,

    Apply the below CSS for that:

    Code:
    div#slider h1 {
      color: #FFF;
    }
    #slider p {
      color: #FFF;
    }
    .copyrightinfo p {
      color: #FFF !important;
    }
    .copyright a {
      color: #FFF !important;
    }
    Hope it will solve your query.
     

Share This Page