Font Size and Colour Options

Discussion in 'Harrington- A WordPress Business Theme.' started by drkatiethomas, May 2, 2014.

  1. drkatiethomas

    drkatiethomas Member

    Joined:
    May 1, 2014
    Messages:
    45
    Likes Received:
    0
    I read the thread on changing the Style and colour of home page headings. This was very helpful. Is there a way to change the colours to "dark blue" rather than just blue? The script recognized "blue" but not "dark blue." Also, how can I make the font of these headings larger? and/or bold? Thank you kindly for your time.
     
  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:
    .home_container .page_info h1 {
    color: darkblue;
    font-size: 30px;
    font-weight: bold;
    }
    .home_container .page_info p{
    color: darkblue;
    font-size: 25px;
    } 
    In place of "darkblue" you can put your color or color code.
    You can also change the value of "font-size" as per your requirement.
    This will solve your issue.
     

Share This Page