. credit link:
Created by < a title = "The Support page" href = " http://3oneseven.com/ ">miloIIIIVII< /a>
. footer widget:
open functions.php file, find this line:
if ( function_exists('register_sidebars') )
register_sidebars(2, array(
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h2>',
'after_title' => '</h2>
add
register_sidebars(3, array
instead of
register_sidebars(2, array,
save it, open footer php file,
find this:
<div class="footer_inside">
add this line AFTER the above string:
<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar(3) ) : else : ?>
find this line:
</div>
<hr class="clear" />
add this line BEFORE it:
<?php endif; ?>
save it, now you have a widetized footer, where you can drag widgets
in the widgets panel.