• I am stumped.

    When I click on a category to see all the blogs in that category (archived blog postings), the first one is lined up nicely, the second one is indented to the right and overlaps my right sidebar. Is this a css issue or a wordpress issue??

    Any suggestions or advice would be greatly appreciated.

    Thanks so much!

Viewing 4 replies - 1 through 4 (of 4 total)
  • It seems like a theme issue.

    What theme are you using?

    Thread Starter jaw23

    (@jaw23)

    I’m developing my first theme.

    here’s the code from my archive.php file…

    <?php get_sidebar(); ?>
    <?php if(have_posts()) : ?>

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

    <div class=”main” id=”<?php the_ID(); ?>”>

    <h2>“><?php the_title(); ?></h2>

    <div class=”date”><?php the_date(); ?></div>

    <p><?php the_content(); ?></p>

    <div class=”metabottom”>filed under <?php the_category(‘, ‘) ?> | “>leave a comment </div>

    </div> <!– .post –>

    <?php endwhile; else : ?>

    <div class=”post”>

    <h2>Page Not Found</h2>

    <p>Looks like the page you’re looking for isn’t here anymore. Try browsing the categories, archives, or using the search box below.</p>

    <?php include(TEMPLATEPATH.’/searhform.php’); ?>

    </div> <!– .post –>

    <?php endif; ?>

    <div class=”nextpost”>
    <?php next_posts_link(‘« Older Entries’) ?>
    <?php previous_posts_link(‘Newer Entries »’) ?>
    </div>

    <?php get_footer(); ?>

    Do you see it?

    Thread Starter jaw23

    (@jaw23)

    here is the page with the top sidebar included:

    <?php get_header(); ?>
    <?php $bookmarkifyHide=true; ?>

    <div class=”right”>
    <div class=”container”>
    <h2>categories</h2>

      <?php
      wp_list_categories(‘orderby=name&show_count=1&exclude=1,5,22,23,26,27&title_li=’); ?>

    </div>

    <div class=”ads”>
    <h4>Advertisement</h4>

    <?php /* Widgetized sidebar, if you have the plugin installed. */
    if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar() ) : ?>

    <p> </p>
    <?php endif; ?>
    </div>

    <div class=”container”>
    <h2>meta info</h2>

    <?PHP if (function_exists(‘MiniMetaWidgetSidebar’)) MiniMetaWidgetSidebar(meta); ?>

    </div>

    </div>

    <?php get_sidebar(); ?>
    <?php if(have_posts()) : ?>

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

    <div class=”main” id=”<?php the_ID(); ?>”>

    <h2>“><?php the_title(); ?></h2>

    <div class=”date”><?php the_date(); ?></div>

    <p><?php the_content(); ?></p>

    <div class=”metabottom”>filed under <?php the_category(‘, ‘) ?> | “>leave a comment </div>

    </div> <!– .post –>

    <?php endwhile; else : ?>

    <div class=”post”>

    <h2>Page Not Found</h2>

    <p>Looks like the page you’re looking for isn’t here anymore. Try browsing the categories, archives, or using the search box below.</p>

    <?php include(TEMPLATEPATH.’/searhform.php’); ?>

    </div> <!– .post –>

    <?php endif; ?>

    <div class=”nextpost”>
    <?php next_posts_link(‘« Older Entries’) ?>
    <?php previous_posts_link(‘Newer Entries »’) ?>
    </div>

    <?php get_footer(); ?>

    Thread Starter jaw23

    (@jaw23)

    I couldn’t get the right sidebar to show up when it was in a separate file so I included it in the top of some of my template files – I know, it’s a hack but I’m still learning….

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