• Hello,

    Using Illdy, I would like to hide “Footer Sidebar 1” and even when deleted all widgets there, the default content is still there (ex. Information, Suport,…).

    Thank you,

    Roberto.

Viewing 6 replies - 1 through 6 (of 6 total)
  • 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

    Thread Starter Roberto Vinhote

    (@vinhotebjj)

    Hi Vinod,

    Thank you so much!!

    Best regards,

    Roberto.

    Thread Starter Roberto Vinhote

    (@vinhotebjj)

    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;
    }
    Thread Starter Roberto Vinhote

    (@vinhotebjj)

    Thank you!!

    You are always welcome here ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Hide Footer Sidebar 1’ is closed to new replies.