wordpress widget prob
- by codedude
I am using widgets in my wordpress theme and I need to remove the:
<div class="textwidget"></div>
that appears around the widget's content. I am using this in my function.php file:
if (function_exists('register_sidebar'))
register_sidebar(array('name'='Church Address',
'before_widget' = '',
'after_widget' = '',
'before_title' = '',
'after_title' = '',
));
but I need to remove the div from around the text widget's body. Is there some way to do this?