Change of link colors

Discussion in 'BlogSpring WordPress Theme.' started by marian, Mar 10, 2014.

  1. marian

    marian New Member

    Joined:
    Mar 5, 2014
    Messages:
    15
    Likes Received:
    0
    Hello, I would like to change the link colors from the black one to blue one, where am I supposed to edit the code? Or is it available in some settings?

    Also, if I'd like to change the font - where would I go?

    Thanks,
    Marian
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    a {
    color: blue ! important;
    }
     
    In place of "blue" you can put your color or color code.
    This will change the color of link.

    2. 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,span,body,div{
    font-family: symbol;
    } 
    In place of "symbol" you can put your font.
    This will solve your issue.
     
  3. qleapent

    qleapent Guest

    Joined:
    Jun 20, 2014
    Messages:
    7
    Likes Received:
    0
    Hi, how do I get the links to be blue and underlined?
     
  4. 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:
    a{
    color:blue;
    text-decoration:underline;
    } 

    Thanks & Regards
    Gourav Shrivastava
     

Share This Page