As for the background image, there are usually modifications to make, like tile. Usually it will tile meaning it will repeat the image to cover the entire screen height and width. That is not customizable in the plugin as it stands now, however there is a way to change that if you like, I can show you how to do it. On line 134 or so of user-reg-aide-customCSS.php there is the following:`if( $show_page_image == “1” && !empty( $page_image ) ){
echo ‘<style type=”text/css”>body.login{height:350%; background:url(‘.$page_image.’) repeat center;padding-top:30px;font:11px “Lucida Grande”,Verdana,Arial,”Bitstream Vera Sans”,sans-serif; } </style>’;
echo ‘<style type=”text/css”>body.register{background:url(‘.$page_image.’) repeat center;padding-top:30px;font:11px “Lucida Grande”,Verdana,Arial,”Bitstream Vera Sans”,sans-serif; } </style>’;
echo ‘<style type=”text/css”>body.login login-action-lostpassword wp-core-ui{height:350%; background:url(‘.$page_image.’) repeat center;padding-top:30px;font:11px “Lucida Grande”,Verdana,Arial,”Bitstream Vera Sans”,sans-serif; } </style>’;
}` There after the echos you will see the CSS, just add a no and then a space before the repeat to turn of repeat for the image. I will try to include that in the next update too.
There also is no Ajax on the page so the changes won’t show up when you make them until after you refresh the page by the way.