[ad_1]
Hi @idkidk34
From the linked screenshot, it looks like you’d like to hide the page’s main content section. I had a quick look at the theme and couldn’t see an option to achieve that via settings in the Customizer. I don’t think the theme author expected this desire, hence the need to hide it via CSS.
It might be worth keeping in mind that as your site grows, the latest posts shown in the section you’d like hidden, will be different than the main story or the editor’s picks. So it might prove valuable not to hide it in the long term.
If you would still like to hide it in the short term and only for the home page, something like the following CSS might work.
.home #content {
display: none;
}I hope that helps!
