please post the code of footer.php (or in what ever file you call the widgets);
generally, have a look into the code of Twenty Eleven to see how they handle the footer widgets…
Heres the basic code in footer, it’s registered in functions and the CSS is working.
<div class=”widget-container-box”>
<div class=”each-widget”>
<?php
if (!function_exists( ‘dynamic_sidebar’) || !dynamic_sidebar(‘Custom Widget 1’)) : ?>
<?php endif;
?>
</div>
<!– …there are four widgets total.–>
</div>
Thanks for the suggestion. I can usually figure things out with an example so I’m pulling a copy of 2011 right now!