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;
}
}
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.