Hey guys,
@nadie0212 fair enough ??
@siranthonyp
Bojan, thing is the CSS in the “customize” settings would change the whole theme and not an individual page. etc.
That’s actually not true, every page has its own unique class in body element which you can add in selector to target that specific page. Generally home page has home class so what you can do based on what you’re actually trying to remove and considering that part is being displayed on all pages is the following.
Lets say the class you’re looking to remove is called header and you want to keep it only on your home page you’d add this:
.header {
display: none;
}
.home .header {
display: block;
}
First part of code in this example will remove “header” everywhere on your site and the second part would override the code above and display the same element only on your home page.
Hope this makes sense ??
Cheers,
Bojan