I'm facing an issue with the layout of my website at . At the bottom, there is a navigation menu and three boxes with images. However, they are currently left-aligned instead of centered. Can anyone suggest CSS code that I can use to center them?
Here is the CSS code I have:
.row-fluid {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.textwidget {
text-align: center
}
Adding the .textwidget css class fixed the alignment of the three boxes, but the navigation menu still remains left-aligned. I'm not sure which specific code affects it. Any help would be appreciated.