• I want to remove the header and page icon off certain pages only. When I use the code listed on Themes & Co snippet page it makes my blog page look really weird because the blog titles no longer show up.

    my site is
    kailualivingshop.com

    I just don’t want the “our story” header showing
    or the “contact” header.

    I would also like the Blog header to be gone but haven’t been able to figure that out without the code removing the individual post titles.

    Sorry if this is confusing I am a new to wordpress!

Viewing 1 replies (of 1 total)
  • Hi,
    you did this for pages right?
    .page .entry-title.format-icon{display: none;}
    It’s fine on page, but you still show the divider, if you want to remove the whole heading block in pages, posts, and Blog (keeping the posts titles in blog) use this instead:

    #content > header, #content > article > header {
        display: none;
    }

    hope this helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Remove Header off certain pages’ is closed to new replies.