Home-Page Feature Headings & Page Headings

Discussion in 'ColorWay WordPress Theme' started by gobban, Jun 27, 2014.

  1. gobban

    gobban New Member

    Joined:
    Sep 11, 2012
    Messages:
    10
    Likes Received:
    0
    Hello there!

    I was wondering how can I change the font of the Home-Page featured headings that I have added through the theme's settings.
    This is the link of the website: http://awpror.se
    These are the headings: Beställ Gasarbete / VVS / Om Awp Rör / Kompetens

    Also I would like to do the same thing for the page Headings.
    For example: "Kompetens" heading on http://awpror.se/kompetens

    I noticed that they somehow became images when I tried to edit them through CSS commands. Instead of having font size, I can add width and height as for an image. The thing is that I only want to increase the font size for those headings.
    Can you help?
     
  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:
    #content .one_fourth h3{
    font-size:30px;
    }
    .content-wrapper h2:nth-child(2) {
    font-size: 30px;
    } 
    You can change the value of "font-size" as per your requirement.
    This will solve your issue.
     

Share This Page