I think I’ve done it myself..
maintenance/lib/index.php
<?php if ( $mt_lib['body_bg'] || $mt_lib['body_bg_color'] ): ?>
<style type="text/css">
body { background:
<?php echo $mt_lib['body_bg_color']; ?>
<?php if ( $mt_lib['body_bg'] ) {
echo "url({$mt_lib['body_bg']}) no-repeat scroll 0 0";
} else {
echo 'url('. PLUGIN_URL . LIB_DIR . '/images/theme-bg-default.jpg' .') no-repeat scroll 0 0';
}
?>;}
</style>
<?php endif; ?>
It was “repeat-x”, just replace it with “no-repeat” and it will be sorted afterwords.
Hope it helps,
Thanks again!