Font size for footer settings

Discussion in 'BizWay WordPress Theme' started by bigtflyer, Jan 29, 2014.

  1. bigtflyer

    bigtflyer New Member

    Joined:
    Jan 19, 2014
    Messages:
    29
    Likes Received:
    0
    Hello!

    In the Theme Options there are Footer Settings tab with "Footer Text," "Footer Email Information" and "Footer Call Information."

    Is there a way to make the text in each of these individually larger?

    I don't want to make them all the same size, I want to be able to control the size of each of them.

    Also I would like to center the text for the "Footer Email Information" as well as the "Footer Text." Do you have a code for that too?

    My site is damageawayusa.com/wordpress

    Thanks!

    Tim
     
  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:
    .footer-wrapper .footer-top-inner2 {
    font-size: 20px;
    text-align: center;
    }
    .footer-wrapper .footer-top-inner3 {
    font-size: 20px;
    }
    .footer_bottom p.copyright {
    font-size: 20px;
    text-align: center;
    }
     
    You can change the value of "font-size" as per your requirment.
    This will solve your issue.
     

Share This Page