Okay
  Public Ticket #407218
Remove header and footer from Post
Closed

Comments

  • Nathan started the conversation

    I followed your directions to remove the header and footer from pages and it worked well. How do I remove the header and footer from a post? Woocomerce puts products on posts not pages and I need to suppress the header and footer for these as well.

  •  8,849
    Tahir replied

    Can you provide page url of any such post . You can find out by viewing the page source and the class that is in the body tag .

    Thanks


    ThemeNectar Support Team 

  • Nathan replied

    Here: http://redditbomb.com/?product=150-upvotes

  •  8,849
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :
    .single-product.postid-55 #header-outer {
        display: none !important;
    }
    .single-product.postid-55 #header-space {
        display: none !important;
    }
    .single-product.postid-55 #footer-outer {
        display: none !important;
    }
    body.single-product.postid-55 {
        background-color: #F8F8F8 !important;
    }

    Thanks



    ThemeNectar Support Team