• Resolved alev

    (@alev)


    I need to create a page or a post but it I only need to see page no header or footer
    Is there a way to get this done?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Easily done.

    Install a browser inspector so that you can read the page / post id numbers.

    You have to be able to customise your CSS, so either use a child theme, or install one of the custom css plugins.

    Load the page you want to customise in your browser, examine the page code with your browser inspector, depending upon your theme you will see the header and footer and other regions enclosed in div blocks, like this:

    <body class="page-23 .....">
         ....
         <div class="hdr">

    So you use css like:

    .page-23 .hdr {
        display:none;
       }

    OR on a completely different tack, create the page with a custom page template.

    Thread Starter alev

    (@alev)

    Hi
    Is the browser inspector a plugin? or it is application if it is where do find it
    I search google and have not see it
    I usually use firefox to see css layout

    Thread Starter alev

    (@alev)

    Thanx great suggestion custom CSS work fine

    LA

    If you use firefox, then your browser inspector is FIREBUG, possibly you are already using it, look for it in your addons.

    Thread Starter alev

    (@alev)

    Thanx I have been using FIREBUG all the time.
    I just thought that browser inspector is a plugin for WordPress
    Or Just an application to install on my computer..

    Any way Your suggestion with custom css really great idea i did not thought of it thank you

    LA

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Wondering if this can be done’ is closed to new replies.