Hide from home page

Hi there, I need to hide a section from the home page.

I tried this:

.postid-743 .easy-footnotes-wrapper .easy-footnote-single{
display: none !important;
}

To no avail. Can you guys help? TIA.

Hi @ADBL,

Thanks for reaching out.

Please update your CSS selector to this one:

.page-id-743 .easy-footnotes-wrapper .easy-footnote-single {
 // your CSS code
}

I suggest that you will learn on how to do a inspect element, you may check it here and you can check the specific page class in the body tag. See the example below.

Hope that helps and let us know how it goes.

Thank you.

OF COURSE! Thanks a lot for the prompt reply.

Hi @ADBL,

You’re welcome and it’s our pleasure to help you. If you have any other concerns, feel free to reach us.

Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.