• Resolved fantasy_5

    (@fantasy_5)


    Hi!

    I have figured out how to remove the header container, title/description, and menu from all pages, regular pages (i.e. about, archives, etc.), but I can’t figure out how to remove it from every single blog posts page. Can you help? My website is celebrityscope.net

    For instance, this line of code was used to remove the blog’s description from these specific pages.

    <?php if( !is_page( array(1816, 2522, 1985, 3074, 3656, 4050, 2477 )) ){ ?>
    
                                        <p><?php bloginfo('description'); ?></p>
    
    <?php } ?></a>
Viewing 1 replies (of 1 total)
  • Thread Starter fantasy_5

    (@fantasy_5)

    If someone else is reading this thread heare is the code to put in pc custom css plug in area to remove header, menu, and logo from all single blog posts pages.

    .single-post .logo {
       display: none;
    }
    
    .single-post .menu {
       display: none;
    }
    
    .single-post .header-inner {
       display: none;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Remove header, title, and menu from single blog posts pages’ is closed to new replies.