I’ll do my best. It look like you got rid of the spare divs and breaks, that’s good. Now, the unordered list
<ul class="sidebar_list">
needs a closing
</ul>
this is all the way down past your adwords feed and the site meter, it is right under:
<!-- Copyright (c)2006 Site Meter -->
grab that closing tag and put it up just above
<script type="text/javascript"><!--
Otherwise all of the Google and site meter stuff is effectivly in your list.
Now, you have two external style sheets,
wp-content/themes/neoclassical/style.css
wp-content/themes/neoclassical/custom.css
I recommend that you add the stylecode I gave you to one of those, I’d probably go with whichever one has the selector #right_sidebar
. It is a good idea to save a copy of the original you can go to if everything messes up Open it however you edit these things. It would probably be best if you found
#right_sidebar {
<style stuff>
}
and pasted what I gave you in after the last curly brace. Make sure you get all of it, especially don’t leave out a curly brace.
When you get your style updated, you can go back to your index.php, and type <hr />
right after that </ul>
you just moved, then check the result.
The way I wrote that selector, it will only style an hr tag that is contained within the #right_sidebar
DIV.
Does this all make sense?