Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1286908

    hi I have two grid section with two classes at the bottom of this page:
    https://lostspiritgroup.com/services/
    (I mentioned the password on private content)

    in fire fox media query works but in chrome and safari it doesn’t,

    my media query:

    @media only screen and (min-width: 990px)and (max-width: 2999px){
    .big-monitor{
    display:none;!important
    }
    .small-monitor{
    display:block!important;
    }
    }

    @media only screen and (min-width: 3000px)and (max-width: 10000px){
    .small-monitor{
    display:none!important;
    }
    .big-monitor{
    display:block!important;
    }
    }

    #1287707

    Hey hooman80,

    https://share.getcloudapp.com/xQunXdEq You have an error here.

    This line:

    
    display:none;!important
    

    should be

    
    display:none!important;
    

    Best regards,
    Victoria

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