• Hi,
    I am not able to remove the “search categories and archive” from the page so that i can make the content spread over the full screen and not shrink to left corner. The page looks like a ‘post’ as the line “Comments are closed.” comes up in the bottom of the page which makes it look like a post and not a page.

    here is the link to the site:
    https://www.loungecommerce.com/about-us/

Viewing 1 replies (of 1 total)
  • Hello ambhu
    To remove sidebar from page template you need to remove the sidebar div. It is better to make a new template called fullwidth in your child theme. You can learn how to make a child theme here.
    Now in your child theme root folder create a file fullwidth.php
    Copy and paste all those codes from page.php to fullwidth.php. Then change the template name to Fullwidth, to do this just replace the commented header with this:

    /**
     *
      Template Name: Fullwidth
     *
     */

    Then find and remove these lines from fullwidth.php

    <!--Sidebar-->
    <div class="grid_8 omega">
    <!--Start Sidebar-->
    <?php get_sidebar(); ?>
    <!--End Sidebar-->

    Your fullwidth page template is ready now. It will show when you add a new page on the right side under >> Page Attributes >> Template. Select Fullwidth while creating a page. ??

Viewing 1 replies (of 1 total)
  • The topic ‘Page Template – Full screen’ is closed to new replies.