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

    Hello,

    The website http://www.dalmulder-advies.nl doesn’t work very good in IE8.
    The logo isn’t in the right proportion and we have two sliders, one for mobile and one for desktop.
    It shows them both now.

    IE 10 or 11 is no problem and other browsers also works good.

    Can you please take a look?

    #317164

    Hi!

    I think the problem is that IE8 doesn’t support media queries, try putting the slider2 hiding code outside, a media query for that it’s not necessary after all:

    #layer_slider_2{ display:none!important;}
    

    Regards,
    Josue

    #317281

    Hello Josue,

    Clear! But the second layer slider is nececerry for mobile.
    So if we put it outside the query it will dissapear on a mobile phone as well.

    Is there an option to put CSS for IE 8 in the template?
    Maybe with a plugin?

    Greets Jeen

    #317618

    Hi Jeen!

    Yeah but mobiles do support media queries, i suggest something like:

    #layer_slider_2{ display:none!important; }
    @media only screen and (max-width: 767px) {
    #layer_slider_2{ display:block!important; }
    #layer_slider_1{ display:none!important; }
    }
    

    Cheers!
    Josue

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