Thanks for helping. #1 and #3 makes more sense now. However, after messing around with #2, I am still lost. This is what my code looks like for the sidebar. Can you tell me where the li tag is missing here?
I am using dreamweaver and I assume it automatically closes any tags that I may have been missing.
Also, I got this list from what the Wordpress documentation said about how to style nested lists
here. Apparently, I am still not making the connection with this.
Code:
<ul>
<li><h2><a href="#">Back to Homepage</a></h2></li>
<li><h2>Last Five Entries</h2>
<ul>
<li><?php wp_get_archives('type=postbypost&limit=5'); ?></li>
</ul></li>
<li><h2>Categories</h2>
<ul>
<li><?php wp_list_cats('sort_column=id&optioncount=0&children=0&exclude='); ?></li>
</ul></li>
<li><h2>Archives</h2>
<ul>
<li><?php wp_get_archives('type=monthly'); ?></li>
</ul></li>
</ul>