Line Spacing of wording

Discussion in 'RoadFighter WordPress Theme' started by sean23, Oct 27, 2013.

  1. sean23

    sean23 New Member

    Joined:
    Oct 13, 2013
    Messages:
    23
    Likes Received:
    0
    Hi,

    I would like to have the word spacing be single rather than double. Is this obtainable?

    Thanks,
    Sean
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

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

    Code:
    p {
    line-height: 12px!important;
    }
     
  3. sean23

    sean23 New Member

    Joined:
    Oct 13, 2013
    Messages:
    23
    Likes Received:
    0
    Thanks for the feedback. Will this code do this for every page or just for one page? I need this specifically for my Contact us Page.
     
  4. Piyush

    Piyush Support Staff

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

    The code given by Nitesh in the above post will work on every pages.

    If you want the code for contact page only them
    paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .contact-page p {
    line-height: 20px;
    }
    This code will only work for contact us page.
     

Share This Page