important link side box has inline style . the only way i can see is to override tpl_ezpages.php located in sidebox folder . then open in text editor
and add additional style element to ul tag.
'<ul style="margin: 0; padding: 0; list-style-type: none; text-align: center;">'
you can also replace the style with class
'<ul style="EZinfo">'
then create this rule in your stylesheet.css
.EZinfo {
list-style-type:none;
padding:0;
text-align:center;
}
i like using class, because i can have more control over style , and i can change things without opening and closing php files.
thats all i know on how to do this, but others might have different ways