Hi, is there anyway to center the facebook widget?
I’ve centered them using the css code below but the facebook widget stays left.
#footer .widget {
text-align: center; }
Thanks.
Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 767px) {
.av_facebook_widget_wrap {
width: 185px;
margin: 0 auto;
}
}
Cheers!
Josue