• This is the code
    <?php } ?>
    <?php if (function_exists('get_recent_comments')) { ?>
    <li><h2><?php _e('Recent Comments:'); ?></h2>
    <ul>
    <?php get_recent_comments(); ?>
    </ul>
    </li>
    <?php } ?>
    <ul>
    <li><h2>Recent Posts</h2></li>
    <?php c2c_get_recent_posts(5); ?>
    </ul>
    <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>
    <li><h2>Archives</h2>
    <ul>
    <?php wp_get_archives('type=monthly'); ?>
    </ul>
    </li>

    How can I get Recent Post to line up with recent comments, page, archive,etc..

    Thanks, My site is http://www.haveanicelawn.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • Check the surce code of your site and make sure the lists are nested correctly!

    Thread Starter tdfaucette

    (@tdfaucette)

    I don’t want to sound stupid when it comes to these things, but I am stupid when it comes to these things. I have know idea how to make sure they are nested correctly. I can check the source, but what do I look for.

    Thanks TF

    One fairly easy way is to access http://validator.w3.org/ and input your site address – if you’ve got incorrectly nested lists, the errors shown will help you find them.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘making subjects in sidebar align’ is closed to new replies.