10
Ok now i understand your issue. sorry i wrongly think you need more space vertically

I believe a min-width will solve your issue.
open xoops255/modules/system/templates/blocks/system_block_themes.html then add a new class "xo-block-theme"
le="color: #000000"><?php <div class="txtcenter xo-block-theme"> <form action="<{xoAppUrl index.php}>" method="post"> <{$block.theme_select}> </form> </div>
then define in your theme style.css
le="color: #000000"><?php .xo-block-theme select{ min-width: 100px; }
then update your system module.
you can do it with the old class "txtcenter" too without modifying templates like this:
le="color: #000000"><?php .txtcenter select{ min-width: 100px; }
but i personally prefer to add a unique class.