Hi,
1.You can only center the widgets if you align the text to center, they are now left-aligned, that’s why they aren’t centered, or alternatively you can right align the last widget and center align the middle widget, that will be a good solution too, below you can find Custom CSS for both:
text-center:
.footer-widgets {
text-align: center !important;
}
last widget aligned right and middle widget aligned center:
.sidebar-column:nth-child(2) {
text-align: center;
}
.sidebar-column:nth-child(3) {
text-align: right;
}
2.You can fix the icon list misalignment issue with this Custom CSS:
.footer-widgets .fa-ul {
margin-left: 0 !important;
}
.footer-widgets .fa-li {
position: relative !important;
top: 0 !important;
left: 0 !important;
vertical-align: middle !important;
display: inline-block !important;
text-align: left !important;
width: auto !important;
margin-right: 10px !important;
}
Please add the above CSS to your Child Theme’s style.css or in case you haven’t setup a Child Theme already, then you can also add the CSS to wp-admin -> Appearance -> Customizer -> Additional CSS so you won’t loose the changes after Theme or WordPress updates.
Please let me know how it works.
Kind Regards,
Csaba