How do i enable Back to top on mobile resolution? It pops up on desktop but disappears somewhere between 1366 and 1024 resolution. I tried to find it from the settings, but couldnt.
If you don’t already have a Custom CSS plugin installed, please, go to Plugins > Add New and search for Simple Custom CSS, install and activate. Go to Appearance > Custom CSS and insert:
/* Add scroll to top for mobile */
@media (max-width: 1024px) {
#scroll-to-top {
display: block;
}
}