DIsabling footer widgets in all pages

Kindly help me in disabling footer widgets in all other pages except homepage and also how to have 4 footer widgets come in a single row instead of 3 as of now

Hi @beingshahul,

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 -> Travelify Other Options

#footerarea .widget-area {
    display: none;
}
body.home #footerarea .widget-area {
    display: block;
}
#footerarea .widget-area .col-3 {
    width: 23%;
}

Best Regards,
Movin