Re: I would add a fourth-section, but the widgets?
Dear friends, I solved!
I added like you said a functions.php file in my theme, only with this code:
<?php
/* Register my widget 4 column */
register_sidebars( 1,
array(
‘name’ => ‘zero-section’,
‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h2 class=”widgettitle”>’,
‘after_title’ => ‘</h2>’
)
);
?>
ciao and thank you for your inputs and your help!
A.