• Hi everyone,

    I’m trying to design a page template so that a list of all the child pages is listed at the end of the page; this list has to be preceeded by a short text which contains the title of the page. The code I’m using is

    <p>Text...  <strong><?php
    $title = get_the_title($post);
    echo $title;
    ?></strong> more text:</p>
    				<ul>
      <?php
      wp_list_pages('sort_column=menu_order&amp;title_li=&amp;child_of='.$post->ID); ?>
      </ul>

    which seems to work, but it pushes the sidebar down and I don’t know why. Any help would be very appreciated!

    See the problem here

Viewing 1 replies (of 1 total)
  • something is happening with the width of the columns probably and it is in the new code, so start there. I would start with trying to change the <p> </p> to divs and see if the works. If not the next thing to try are changing the

      ‘s

Viewing 1 replies (of 1 total)
  • The topic ‘Page template pushes sidebar down’ is closed to new replies.