Tagged: LayerSlider, slider
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
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
Thanks josue, Will give the code a try
We looking forward to hearing from you :)
Regards,
Josue