Font colour and typography

Discussion in 'SwiftRay WordPress Theme' started by johnwynparry, Feb 25, 2014.

  1. johnwynparry

    johnwynparry New Member

    Joined:
    Oct 18, 2012
    Messages:
    6
    Likes Received:
    0
    Hi there,

    I am using swift ray and am trying to change both the font colour and style. I have managed to alter font style from instruction in an older post by adding css code in theme style. But the colour change is not occurring. I want the headers 1-6 to be blue. The code I have typed is:

    h1, h2, h3, h4, h5, h6{
    font-family: Quicksand, sans-serif; colour: #1d8fab;;
    }
    p, fieldset{
    font-family: Open Sans, sans-serif
    }
    Please could you advise me on this matter:)
    thank you in advance
     
  2. Piyush

    Piyush Support Staff

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

    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{
    font-family: Quicksand, sans-serif; 
    color: red ! important;
    }
    p, fieldset{
    font-family: Open Sans, sans-serif;
    } 
    In place of "red" you can put your color or color code.
    This will solve your issue.
     

Share This Page