combining widget areas in the footer

I want to combine widget areas 2 & 3 in the footer so that I have a total of 3 columns, with the middle column being twice as wide as the side columns. Is this possible?

At the very least, I’d like to have 3 columns. If the middle column can be twice as wide, that would be preferred, but I’d settle for having 3 evenly sized ones that take up the entire width of the footer.

Hi @kirstinann92,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

@media (min-width: 992px){
.footer-widget-area .footer-widget:nth-child(2) {
    width: 50%;
}
}

Best Regards,
Movin

Hello Movin

This code does not seem to be working anymore. Has something changed or is it just user error on my end? I really liked how this looked before, but I’m not a fan of the first column taking up more space than it needs to, and the third column sitting below the other two.

Nevermind, turns out to be user error! The editing tools on the left had altered the display. When I hid the tools, all was good :slight_smile:

You are most welcome here :slight_smile: