Where/How to center widget titles?

I’m looking every where for an option to center the widget titles in my footer

How do I do this?

Also, how do I adjust the color & size of the rest of the font in the widgets?

The title size as well as the font entry in the widget?

I seemed to have figured this one out.

I added this to the Global CSS:

.h-widget {  
  font-size: 35px; 
  text-decoration: underline;
  padding-bottom: 25px;
}
.x-colophon {
	font-size: 20px;
  text-align: center;
}

Seemed to work just fine, let me know if there is anything that doesn’t look right.

Thanks!

Hi John,

Glad that you are able to find the solution. Still, I would suggest you use the following code to avoid any conflict.

.x-colophon .widget
{
    text-align: center !important;
}

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.