In case you didn’t find the answer.
You can modify in the plugin in file
inc/preloader-plus.php:272
the following code:
<img class="preloader-custom-img" src="<?php echo esc_url( $settings['custom_icon_image'] ); ?>" /> <?php
with
<img class="preloader-custom-img" src="<?php echo esc_url( $settings['custom_icon_image'] ); ?>" alt="Preloader Custom Image" /> <?php
as you can notice I’ve just added alt="Preloader Custom Image"
which you can change it with whatever.
I had same issue at alysar.ro but what I’ve told you above works great.