Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author micropat

    (@micropat)

    Show/hide responsiveness is built-in already for the floating buttons (with options in the Floating tab).

    Beyond that, you can use custom CSS code to further customize the responsive breakpoints & styles, for example:

    @media screen and (max-width: 980px) {
        .a2a_floating_style.a2a_vertical_style {
            display: none;
        }
    }
    @media screen and (min-width: 981px) {
        .a2a_floating_style.a2a_default_style {
            display: none;
        }
    }

    Thread Starter demeter_aurion

    (@demeter_aurion)

    Thanks for your response. I don’t think what I’m trying to achieve is possible with this plugin unfortunately. I would like for the bar to hide with an option to show it (like an arrow) on mobile devices.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Floating Buttons Responsive’ is closed to new replies.