Try editing the template file for the right sidebar and changing:
<?php get_search_form(); ?>
<div class="box">
to
<?php get_search_form(); ?>
<div>
I’m sorry, i don’t see that here.
<div class="sidebar last"><!--Sidebar Right -->
<form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
<div class="box"><!--search-->
<h3>Melt Blog Search</h3>
<div class="row">
<input type="text" value="<?php the_search_query(); ?>" class="search" name="s" id="s" size="20" />
<input type="image" id="submit" src="<?php bloginfo('template_url'); ?>/images/go.gif" value="submit" class="submit" />
</div>
<div class="clear"></div>
<div class="cap"></div>
</div><!--/Search box-->
</form>
<div class="box">
<!-- Widgetized right sidebar -->
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar('right_sidebar') ) : ?>
<?php endif; ?><div class="clear"></div>
</div><!--/sidebar-->
Change:
<form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
<div class="box"><!--search-->
to
<form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
<!--search-->
It removed all the boxes from the R sidebar all my widgets were floating without a background. Any other suggestions?