Open the sidebar templates or areas where the widgets are
and look for this code:
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(1) ) : else : ?>
< h3>Dialo<span>gue</span></ h3>
<ul ><?php recent_cmts('8'); ?>< /ul >
<h3 >User <span>Photos</span>< /h3>
<?php get_flickrRSS(); ?>
<?php endif; ?>
example take from l_sidebar.php
and move this line
<?php endif; ?>
before the hardcoded area, so it looks like this
<div id="l_sidebar">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(1) ) : else : ?>
<?php endif; ?>
< h3>Dialo<span>gue</span>< /h3>
< ul><?php recent_cmts('8'); ?>< /ul>
< h3>User <span>Photos</span>< /h3>
<?php get_flickrRSS(); ?>
</div>
Now the widgetized area is before the hardcoded widget.