Hi Zabriskie73 !
Buttonizer currently has the following breaking points for the width:
- Phone, until
769px
- Desktop, from
769px
I believe Elementor has a third option, that is the tablet one right? Is that the breakpoint between 769px
and 1150px
?
We were already thinking about support a tablet breakpoint, so I've changed this topic into a feature request topic.
Meanwhile, you might want to use custom CSS to hide Buttonizer on tablets/mobile:
@media screen and (max-width: 1150px) {
.buttonizer.buttonizer-group {
display: none !important;
}
}
Or only hide on tablets and show on phones:
@media screen and (min-width: 769px) and (max-width: 1150px) {
.buttonizer.buttonizer-group {
display: none !important;
}
}