I'm currently using the Retailer theme for my WooCommerce shop, which has 3 footer widget placeholders set up in a grid layout. However, I want to consolidate these into just one widget that spans the width of the entire main container.
I managed to achieve this with the following CSS:
Footer Widget CSS
.container_12 .grid_4 {
width: 100%;
}
But when I implemented this, the sidebar menu on the left disappeared. Removing the CSS brought back the sidebar but messed up the footer layout. You can see an example here:
Currently, I've removed the CSS for the widget so the shop menu is visible, but the footer is still not displaying correctly. Ideally, I want it centered in one line like shown here:
Here's the CSS for the grid holding the sidebar:
Shop Sidebar CSS
.container_12 .pull_9 {
left: -820px !important;
}
Any suggestions or feedback would be greatly appreciated. Thank you.