Center Footer Text

Discussion in 'Figero WordPress Theme' started by galesburgpl, Aug 8, 2013.

  1. galesburgpl

    galesburgpl Member

    Joined:
    Apr 18, 2013
    Messages:
    41
    Likes Received:
    0
    I would like to center the content of my various footer widgets. I have already added some code to define certain properties I wanted (like text color and decoration), but when I try to add "text-align: center" to this, it doesn't work. What am I missing?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Do let us know your website link.
     
  3. galesburgpl

    galesburgpl Member

    Joined:
    Apr 18, 2013
    Messages:
    41
    Likes Received:
    0
    http://www.galesburglibrary.org/a/

    I have got the text centered by placing it within a container and centering it, but I'm not sure how to center the 'Search' option in the second footer widget?
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #searchform {
    float: right;
    }
    #searchform input[type="text"]{
    text-align:center;
    }
    This will solve your issue.
     

Share This Page