Center Titles in Footer Widgets

Discussion in 'Themia WordPress Theme' started by kmld_521, May 17, 2013.

Thread Status:
Not open for further replies.
  1. kmld_521

    kmld_521 Guest

    Joined:
    May 12, 2013
    Messages:
    24
    Likes Received:
    0
    Is there a way to center the titles in the footer widgets?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .footer_wrapper .footer_widget h6 {
    text-align: center;
    }
    this will solve your issue.
     
  3. kmld_521

    kmld_521 Guest

    Joined:
    May 12, 2013
    Messages:
    24
    Likes Received:
    0
    How would I center the menu in the footer?

    Ty, I love your customer service!
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .footer .footer_menu li {
    float: none;
    display: inline-block;
    }
    .footer .footer_menu {
    text-align: center;
    }
    This will solve your issue.
     
  5. kmld_521

    kmld_521 Guest

    Joined:
    May 12, 2013
    Messages:
    24
    Likes Received:
    0
    Thank you!
     
Thread Status:
Not open for further replies.

Share This Page