this is what is there…
<?php if($theme->display(‘footer_widgets’)) { ?>
<div id=”footer-widgets” class=”clearfix”>
<?php
/**
* Footer Widget Areas. Manage the widgets from: wp-admin -> Appearance -> Widgets
*/
?>
<div class=”footer-widget-box”>
<?php
if(!dynamic_sidebar(‘footer_1’)) {
$theme->hook(‘footer_1’);
}
?>
</div>
<div class=”footer-widget-box”>
<?php
if(!dynamic_sidebar(‘footer_2’)) {
$theme->hook(‘footer_2’);
}
?>
</div>
<div class=”footer-widget-box footer-widget-box-last”>
<?php
if(!dynamic_sidebar(‘footer_3’)) {
$theme->hook(‘footer_3’);
}
?>
</div>
</div>
<?php } ?>
but where it says to manage widgets from such and such area…there’s nothing in the box for widget area3