Hi,
Or use the standard interface (with rectangle icons) for desktop and the floating one (square icons) for mobile?
This is possible. Let us know the width of mobile device screen that you want to use to differentiate between desktop and mobile.
Hi.
I like the floating interface on tablets too, so i guess 800px and lower for mobile.
Add following CSS in Custom CSS option at Super Socializer > General Options page in admin area:
@media screen and (max-width:800px){
.the_champ_horizontal_sharing{
display: none !important;
}
}
@media screen and (min-width:800px){
.the_champ_vertical_sharing{
display: none !important;
}
}
Perfect. Thank you very much!