Because of small screen devices, when scroll header is activated, it is filling almost whole screen. How can I disable only on mobile devices?
Hello Mate,
Please tell me what the theme are you using?
To disable scroll header is activated on mobile. Please try to open the file “skin/frontend/ves theme package/default layout/javascript/common.js” then find code:
else if( $(“body”).hasClass(“keep-header”)){
Replace to:
else if( $(“body”).hasClass(“keep-header”) && !mobilecheck() ){
It will check if not mobile the scroll header will activated. Vice versa, it not activated.
I´m using Ves New Shopping theme. I did what you said and works perfectly. Thanks again for your quick support.