It is necessary that the block is not shown if the browser size is less than 1200px. I tried using @media like this:
@media screen and (width: 1200px) { .mCSB_scrollTools { display:none !imporatnt; } } But it does not work, I think I incorrectly made a condition. What is better to use?
@media (max-width: 1200px) { .mCSB_scrollTools { display:none !important; } }@media (max-width: 1200px) { .mCSB_scrollTools { display:none !important; } }- Goldy