How can I reduce the number of footer widget areas from 3 to 2? I only want two columns in my footer.
Also, I want to make footer widget area 1 have width 66.6% and footer widget area 2 have width 33.3%.
Hi @tjuel,
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 the latest version of Sparkling theme on the below path.
Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS
.footer-widget-area .footer-widget:first-child {
width: 66.6%;
}
.footer-widget-area .footer-widget:nth-child(2) {
width: 33.3%;
}
Best Regards,
Movin
Thanks, Movin, this worked perfectly!
You are most welcome here