How to remove post box from the latest news section?

Hello!

On Latest News section I have 3 mandatory boxes from the last 3 posts. How can I remove it?

Thank you!!

Hey there,

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 -> Additional CSS

/*Remove blog section*/
section#latest-news {
    display: none !important;
}

Best regards,
Support.

Hello!

Thank you so much for your help. But, with that code, the whole Latest News section was deleted. I just want to delete the 3 boxes with the last posts.

Can you help me, please?
Thanks.

VĂ¢nia Lima

Hey there,

In that case, you can use this code instead.

/*remove post div*/
#latest-news .section-content {
    display: none;
}

Best regards,
Support.

Thank you so much: it works!!!

Hello there,

I am glad the solution worked for you.
Please feel free to contact us again in the future regarding any other issues.

Best Regards,
Support