Hi! i had the same problem but i find the way to do that.
You have to go to your cpanel and see your files.
public-html/wp-content/plugins/shortcodes-ultimates/inc/core/shortcodes.php
When you are inside of shortcodes.php (be careful don’t delete or modify nothing, you can have serious damages in your website) you have to search “su-box-shortcodes” in one of the lines looks like this:
su_query_asset( 'css', 'su-box-shortcodes' );
// Return result
return sprintf(
'<div class="su-box su-box-style-%1$s%2$s" style="border-color:%3$s;border-radius:%4$spx"><div class="su-box-title" style="background-color:%5$s;color:%6$s;border-top-left-radius:%7$spx;border-top-right-radius:%7$spx">%8$s</div><div class="su-box-content su-clearfix" style="border-bottom-left-radius:%7$spx;border-bottom-right-radius:%7$spx">%9$s</div></div>',
You have to add text-align:center;
to the Style.
it will look like this:
<div class="su-box su-box-style-%1$s%2$s" style="border-color:%3$s;border-radius:%4$spx"><div class="su-box-title" style="background-color:%5$s;color:%6$s;text-align:center;border-top-left-radius:%7$spx;border-top-right-radius:%7$spx">%8$s</div><div class="su-box-content su-clearfix" style="border-bottom-left-radius:%7$spx;border-bottom-right-radius:%7$spx">%9$s</div></div>',
hope that helps you