• Open
  • Chris Veldad
    Spectator
    06.10.2021 at 13:22 #47084

    Is there a way of changing the location of the Social Media icons when being browsed from a mobile?

    If not possible, how can we disable this instead when on mobile?

    Evgeny
    Keymaster
    Posts: 1010
    06.10.2021 at 15:48 #47089

    Hello. No, unfortunately, it isn’t possible. There is no theme functionality to deactivate it on mobile, but you can use CSS to do that.

    Chris Veldad
    Spectator
    Posts: 5
    06.10.2021 at 16:15 #47093

    Thats too bad.

    Can you please guide me on how to do it on CSS?

    Evgeny
    Keymaster
    Posts: 1010
    08.10.2021 at 09:56 #47119

    Happy to. Add this to Additional CSS and save:

    @media only screen and (max-width: 767px) {
    ul.social-media-links {
    display: none;
    }
    }