Site logo

Archived topic

Globally disabling various things

2 replies · Started by Ahmed on August 18, 2016

Viewing posts 1–3 of 3

What is the most efficient way to globally disable the various things that may inhibit your use of elementor, rather than manually disable each time you create a new page

.site-header,
.primary-navigation,
.page-header-image,
.page-header-image-single,
.site-footer {
    display: none;
}

That CSS will hide those elements globally.

As for the title, you can do it with CSS (hide it):

.entry-header {
    display: none;
}

Or remove it completely using the code Leo pointed to.

This archived topic is closed to new replies.