D Deleted member 184953 Guest May 11, 2022 #1 Hello, How to hide content only between 650px and 900px with media queries ? Thanks.
Solution DimmmCom Jun 20, 2022 nicodak said: Hello, How to hide content only between 650px and 900px with media queries ? Thanks. Click to expand... Less: @media (min-width: @xf-responsiveMedium) and (max-width: @xf-responsiveWide) { .you-selector { display: none; } }
nicodak said: Hello, How to hide content only between 650px and 900px with media queries ? Thanks. Click to expand... Less: @media (min-width: @xf-responsiveMedium) and (max-width: @xf-responsiveWide) { .you-selector { display: none; } }
DimmmCom Well-known member Jun 20, 2022 #2 nicodak said: Hello, How to hide content only between 650px and 900px with media queries ? Thanks. Click to expand... Less: @media (min-width: @xf-responsiveMedium) and (max-width: @xf-responsiveWide) { .you-selector { display: none; } } Upvote 0 Downvote Solution
nicodak said: Hello, How to hide content only between 650px and 900px with media queries ? Thanks. Click to expand... Less: @media (min-width: @xf-responsiveMedium) and (max-width: @xf-responsiveWide) { .you-selector { display: none; } }
D Deleted member 184953 Guest Jul 2, 2022 #4 Works like a charm ! Thank you very much @DimmmCom ! Upvote 0 Downvote