Hi,
I'm modifying (heavily) a wordpress template so I can get a department here running their site on WP (they need something that is very basic to edit). However, I'm having a problem with one of sidebars. Basically, I need to list a bunch of links with subheadings and to do this properly, I need to use a different style sheet from the rest of the sidebar. The problem I'm having is that I'm getting this huge gap between the bottom of the list and the next heading (<h2>Archives</h2>). I'm going to post the code here and hope that someone here can tell me where I'm going wrong.
I'm modifying (heavily) a wordpress template so I can get a department here running their site on WP (they need something that is very basic to edit). However, I'm having a problem with one of sidebars. Basically, I need to list a bunch of links with subheadings and to do this properly, I need to use a different style sheet from the rest of the sidebar. The problem I'm having is that I'm getting this huge gap between the bottom of the list and the next heading (<h2>Archives</h2>). I'm going to post the code here and hope that someone here can tell me where I'm going wrong.
<div id="left">
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar(1) ) : ?>
<div id="leftlinks">
<h2>Links</h2>
<ul>
<li><a href="#">Seminars and Conferences</a>
<ul>
<li><a href="#">Fall 2007</a></li>
<li><a href="#">Spring 2008</a></li>
<a href="#">Courses</a>
<ul>
<li><a href="#">Current</a></li>
<li><a href="#">Upcoming</a></li>
<li><a href="#">All Courses</a></li>
<a href="#">Certificate</a>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Testimonials</a></li>
<a href="#">People</a>
<ul>
<li><a href="#">Board of Directors</a></li>
<li><a href="#">Staff</a></li>
<li><a href="#">Research Assistants</a></li>
<li><a href="#">Friends </a></li>
<a href="#">Publications</a>
<ul>
<li><a href="#">Journal</a></li>
<a href="#">University</a>
<ul>
<li><a href="#">Home</a></li>
<a href="#">University</a>
<ul>
<li><a href="#">Academic</a></li>
<li><a href="#">Experimental</a></li>
<li><a href="#">Archive</a></li>
<a href="#">Resources</a>
<ul>
<li><a href="#">Pedagogical Projects</a></li>
<a href="#">Archives</a>
<ul>
<li><a href="#">Conferences</a></li>
<li><a href="#">Faculty Research Seminars</a></li>
<li><a href="#">Public Research Seminars</a></li>
</ul>
</div>
<h2>Archives</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>