• Adds a white bar across the top of the page. Links, drop-downs etc. don’t work – the page is basically frozen.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Yes, this happened to me also, you also cannot highlight text etc, you can only scroll down. However, I get page fades in my Dashboard and the links etc work perfectly fine… hm.

    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>`

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Transitions – AJAX/jQuery Effects] Kills all links’ is closed to new replies.