Hi there,
Parallax will not work on touch devices due to performance issues. And there is no way to differentiate a device if it’s desktop or tablet if both has to touch feature, none yet. A laptop with touch feature is the same as tablet with keyboard accessories.
As for the logo, it has absolute positioning hence, it will stay on its current position even if the layout changes. Please remove this
.sfm-logo, .sfm-rollback.sfm-fixed {
position: absolute;
}
I can’t tell if it’s custom CSS since it’s minified and served through cache. Else, you can override it by adding this CSS
.sfm-logo, .sfm-rollback.sfm-fixed {
position: static !important;
}
Thanks!