Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #162690
    californiasteve
    Participant

    I need to remove the footer and sidebar from the pages (except for the main page). The “No Sidebar” option in the “Theme Options” -> “Layout Options” still has the footer included. Can you point me to a file to find logic for this so I can another template?
    Thanks

    #162735
    sapana
    Participant

    @californiasteve: Please post in your site URl so that I can look into that issue and provide you with additional css.

    Kind Regards,
    Sapana

    #162918
    californiasteve
    Participant

    https://br-na.org I need to have a page with no footer and no sidebar.

    #162999
    sapana
    Participant

    @californiasteve: Do you want to remove the sidebar and the footer from the all the page? If yes then you can use following code.
    /* to remove footer from other page not in home*/
    Go to=> Appearance=> Customize=> Additional CSS and add the following CSS code.

    body:not(.home) #colophon{
    display: none;
    }

    /*To remove sidebar from other page not in home*/
    Go to=> Appearance=> Customize=> Theme Options=> Layout Options=>Default Layout=> Content Primary Sidebar
    Go to=> Appearance=> Customize=> Additional CSS and add the following CSS code

    body:not(.home) aside.sidebar {
        display: none;
    }
    
    body:not(.home) .content-area {
        width: auto;
        float: none;
    }

    Let me know if this help you out!

    Kind Regards,
    Sapana

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Add Custom Page Template’ is closed to new replies.