How do I show the back to top button on mobile/tablet devices?
Go to Theme Options > Styling and in the CSS Code box add :
@media only screen and (max-width: 1023px) {
.gp-theme #gp-to-top {
display: block !important;
opacity: 0.7 !important;
}
} 
