I created the theme. This is what I have for my register side bars function in my functions.php
register_sidebar(Array(
'name' => 'Home Sidebar',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
'before_widget' => '<div class="widget %2$s">',
'after_widget' => '</div>'
));
then in the actual side bar `<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(6) ) : else : ?>
<?php endif; ?>`
that cause's the output of the <ul id="sidebar-right"> before all of my widgets.
This isn't really a major issue I'm just really trying to keep my markup and clean and tidy and am curious if it's possible this is my first time really doing any full development with wordpress.
Thanks for any help.