You may be able to keep your customisations if you update your functions.php to include something like:
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
for each of the register_sidebar calls (which will keep things more or less looking as they are, but be ‘friendlier’ to Rotating Tweets).
Strangely, the HTML of the template opens <ul>
but never provides any <li>
s to populate it, so you may want to experiment with:
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
although when you do that you may discover why the original template designer didn’t do it!
If this is the case, you may still want to change <ul id="top-sidebarwidgets">
in the sidebar.php
file and the associated </ul>
to <div id="top-sidebarwidgets">
and </div>
.
Martin