CSS Command to Change Font Colors

Discussion in 'Infoway WordPress Theme' started by 10sgfraz, Mar 18, 2014.

Thread Status:
Not open for further replies.
  1. 10sgfraz

    10sgfraz New Member

    Joined:
    May 3, 2013
    Messages:
    18
    Likes Received:
    1
    Hello,

    The following code was provided as the answer for a person who wanted their site's font color changed from grey to black, which is a solution that works on my site:

    h1, h2, h3, h4, h5, h6{
    font-family:Arial;
    }
    p, a{
    font-family:Arial;
    color:black;
    }

    However, I also want the links on my site to show as a blue color, and this CSS command doesn't allow that.

    Please provide me with the code to:

    *Keep my font black
    *Keep my links blue

    Thank you,

    Shirley
     
  2. Gourav

    Gourav Support Staff

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

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    p{
    color:black!important;
    }
    a{
    color:blue!important;
    } 

    Thanks & Regards
    Gourav Shrivastava
     
  3. 10sgfraz

    10sgfraz New Member

    Joined:
    May 3, 2013
    Messages:
    18
    Likes Received:
    1
    Wonderful! As always, appreciate your help, Gourav.

    Shirley
     
Thread Status:
Not open for further replies.

Share This Page