Page problems: left margin not aligned want to add sidebar to Page
-
I have two issues: the first has been stumping me for a few hours:
I am using the Blix template, and “out of the box” having a problem with the page.php file: it is aligning the left border of Page content and footer content with the right edge of the top navigation button in the header-so Pages’ left margins extend a few cm’s too far.
I suspect the second issue is easy, but I am clueless nonetheless: I would like to add my sidebar to my Pages. i tried adding
<?php get_sidebar(); ?>
above the get footer tag, but it just threw off my page more.Any help with either issue is appreciated.
An example of the page using this template can be found here:
Here is the page.php code:<?php get_header(); ?>
<!-- content ................................. -->
<div id="content"><?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
</div> <!-- /content -->
<?php get_footer(); ?>
Thanks!
- The topic ‘Page problems: left margin not aligned want to add sidebar to Page’ is closed to new replies.