How can I make the font bigger?

Discussion in 'HomeBuilder WordPress Theme' started by vmunderhill, Feb 17, 2014.

  1. vmunderhill

    vmunderhill New Member

    Joined:
    Feb 3, 2014
    Messages:
    12
    Likes Received:
    0
    Hello, the font for the menu, sub menu, body, and titles of the pages are too small, and I was wondering how I could make the font bigger?
     
  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:
     #menu li a {
    font-size: 15px;
    }
    #menu .ddsmoothmenu li li a {
    font-size: 14px;
    }
    p {
    font-size: 14px;
    }
    h1.page_title {
    font-size: 25px;
    }
    
    You can change the value of "font-size" as per your requirement.
    This will solve your issue.
     

Share This Page