Hi Roberto,
I hope you are well today and thank you for your question.
If you want to just hide “Footer Sidebar 1” then you can do so by adding the following CSS code in the Custom CSS option of your theme on the below path.
Admin Area -> Appearance -> Customize -> Additional CSS
#footer .col-md-3.col-sm-6.col-xs-12:first-child {
display: none;
}
If you want to hide all footer widget area then you can use below CSS code.
#footer .col-md-3.col-sm-6.col-xs-12 {
display: none;
}
Best regards,
Vinod Dalvi
Vinod,
One more question related to the subject:
If I want to hide the others Footer Sidebar 2,3 and 4 but show only Footer Sidebar 1, what do I do?
Thank you,
Roberto.
If I want to hide the others Footer Sidebar 2,3 and 4 but show only Footer Sidebar 1, what do I do?
You can use below CSS code to use it.
#footer .col-md-3.col-sm-6.col-xs-12:nth-child(2),
#footer .col-md-3.col-sm-6.col-xs-12:nth-child(3),
#footer .col-md-3.col-sm-6.col-xs-12:nth-child(4) {
display: none;
}
You are always welcome here 🙂