• Hello. I’m using a plugin called “Simple Social buttons” that I need to hide on mobile devices (on width ~400px). Does anyone have any idea how can I achieve that?

    I tried to do it by adding following code to the style.css file but it didn’t worked ??
    @media (max-width:400px) { .simplesocialbuttons { display: none; } }

    Examplary post on my site (buttons are visible at the top of post) – https://sdgr.pl/obejrzyj-25-minutowy-zapis-rozgrywki-z-deus-ex-mankind-divided/

    Thanks for any help, I really need to deal with it quickly!

Viewing 1 replies (of 1 total)
  • I believe the code you are looking for is;

    @media only screen and (max-width: 400px) {
        .simplesocialbuttons {
            display: none;
        }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Hide social buttons on mobile devices’ is closed to new replies.