Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #315050

    As already stated in the Topic-Title the BG-Pic of our LayerSlider-Slides don’t show up in IE 11. They work in every other Browser we tested (Chrome, Safari, Firefox and IE9). It seems there is a redraw Problem of the canvas, since when I scale the IE11 Window the BG suddenly appears.

    I wasn’t able to solve this by my own. The Problem is not related to any WP-Plugins, since it persists after deactivating all plugins.

    The site is: http://www.cop-morrien.com

    Thanks

    #315445

    Hey!

    Couldn’t note it on my end (IE 11 / Win 7.1), but if you say a resize does the trick then add this to functions.php

    function add_custom_script(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
        $(window).trigger('resize');	
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Cheers!
    Josue

    #316689

    Thanks josue, Will give the code a try

    #316770

    We looking forward to hearing from you :)

    Regards,

    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.