Just thought I would post a few comments about this plugin as I am tweaking around with it…
in the transitions.php file of the plugging there is a lot of css that overrides your main styles (as plugins do) I managed to fix a few things by overriding this with custom css commands in the area of the inline php.
eg : background loss fix (uploader in wp admin not working
<style type="text/css">
html{background-image:url("https://www.jollywood.tv/bg2.jpg");
background-attachment: fixed;
background-clip: border-box;
background-origin: padding-box;
background-position: top left;
background-size: 100% auto;}
<? }
function transitions_repeater() { ?>
<?php $transonerepeater = get_option(‘transitionsrepeater’); ?>
html{background-repeat:repeat;}
<? }
function transitions_html() { ?>
<?php $transonehtmlclr = get_option(‘transitionshtml’); ?>
html{background-color:<?php echo $transonehtmlclr; ?>;}
</style>`