• Open
  • Chris Veldad
    Spectator
    October 6, 2021 at 1:22 pm #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: 988
    October 6, 2021 at 3:48 pm #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
    October 6, 2021 at 4:15 pm #47093

    Thats too bad.

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

    Evgeny
    Keymaster
    Posts: 988
    October 8, 2021 at 9:56 am #47119

    Happy to. Add this to Additional CSS and save:

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