• Hello,

    Could someone help with extending text on the page with no sidebar. My other pages use a page template with sidebar. The page is https://www.propertypeaks.co.uk/landlords/
    Here is the code of the page with no sidebar.
    `<?php
    /*
    Template Name: page-nosidebar
    */
    ?>

    <?php get_header(); ?>

    <div id=”content” >

    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>

    <div class=”post” id=”post-<?php the_ID(); ?>”>
    <div class=”title”>
    <h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
    </div>

    <div class=”entry”>
    <?php the_content(‘Read the rest of this entry »’); ?>
    <div class=”clear”></div>
    </div>

    </div>

    <?php endwhile; else: ?>

    <h1 class=”title”>Not Found</h1>
    <p>I’m Sorry, you are looking for something that is not here. Try a different search.</p>

    <?php endif; ?>

    </div>

    <?php get_footer(); ?>

  • The topic ‘Can't extend text on my page with no sidebar’ is closed to new replies.