How to make footer area text smaller or formatted

Discussion in 'Traffica WordPress Theme' started by techinstalls, Dec 10, 2013.

  1. techinstalls

    techinstalls New Member

    Joined:
    Oct 7, 2013
    Messages:
    7
    Likes Received:
    0
    How can I change font and text size in the footer? Also, is it possible to reduce the padding between the top and bottom of the footer.



     
  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:
    .footer-container {
    padding: 0px;
    }
    .footer-container .footer .footer_widget p {
    color: YOUR COLOR VALUE;
    }
    .footer-container .footer .footer_widget ul li a {
    color: YOUR COLOR VALUE;
    }
    .footer_widget {
    color: YOUR COLOR VALUE;
    }
    Thanks & Regards
    Nitesh Raghuwanshi
     
  3. techinstalls

    techinstalls New Member

    Joined:
    Oct 7, 2013
    Messages:
    7
    Likes Received:
    0
    This is colour no? How can I adjust the font size?
     
  4. 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:
     .footer-container {
    padding: 0px;
    }
    .footer-container .footer .footer_widget p {
    font-size: YOUR FONT SIZE;
    font-family:YOUR FONT FAMILY;
    }
    .footer-container .footer .footer_widget ul li a {
    font-size: YOUR FONT SIZE;
    font-family:YOUR FONT FAMILY;
    }
    .footer_widget {
    font-size: YOUR FONT SIZE;
    font-family:YOUR FONT FAMILY;
    }
    Thanks & Regards
    Nitesh Raghuwanshi
     

Share This Page