Changing Font Size

Discussion in 'GoldenEagle WordPress Theme' started by dj107, Feb 8, 2013.

  1. dj107

    dj107 New Member

    Joined:
    Feb 7, 2013
    Messages:
    5
    Likes Received:
    0
    Hi There I am looking to make the font bigger on the home page menu items. Just to the right of the logo - the Page titles

    Thanks
     
  2. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Hello,
    Put the following code in your custom css

    Appearance -> theme options -> styling options -> custom css

    Code:
    #menu li {
        font-size:16px;
    }
    #menu li a {
    font-size:16px;
    }
    #menu .ddsmoothmenu li li a {
    font-size:16px;
    }
    You can change the value of "font-size" according to your requirement.

    This will solve your problem.

    Thanks.
     
    dj107 likes this.
  3. dj107

    dj107 New Member

    Joined:
    Feb 7, 2013
    Messages:
    5
    Likes Received:
    0
    Hi Harmeet,

    That worked Thank you! Can you help with another font size change? I need to increase the size of the font of the blog body text as it's too small to read at the moment. Thanks
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .content-bar .post p {
    font-size: 17px;
    }
    This will solve your issue.
     
  5. dj107

    dj107 New Member

    Joined:
    Feb 7, 2013
    Messages:
    5
    Likes Received:
    0
    Hi That worked as well ! Many Thanks! How Do I change the font size of the text at the bottom of the home page (not footer) the widgets body text not the headings?

    Than you
     
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    .footer .footer-inner p {
    font-size: 15px;
    }
    .footer .footer-inner a {
    font-size: 15px;
    }
    Adjust the value of font-size as you want.
     
  7. dj107

    dj107 New Member

    Joined:
    Feb 7, 2013
    Messages:
    5
    Likes Received:
    0
    Ok Sort of.......I did this and the third column changed only. I then added a TEXT widget to the third footer column (like col 1 & 2 ) and NO CHANGE i.e. your suggestion didn't work.....can you help me?
     
  8. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Please share the link of your website.
     
  9. dj107

    dj107 New Member

    Joined:
    Feb 7, 2013
    Messages:
    5
    Likes Received:
    0
    Hi There it is

    www.vintagedotty.co.uk

    it is the font size of the body text in the blue box at the bottom of the page

    Thanks
     
  10. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    .footer-inner .textwidget {
    font-size: 20px ! important;
    }
    adjust the value of font-size as per requirement.
    This will solve your issue.
     

Share This Page