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?
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?
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.