Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #148972
    skynet
    Participant

    Hello great CatchThemes Team! My todo question is this: Is there any way to disable scrollup button only on mobile devices?

    Second question is this: Is there any way to make it (scrollup button) 2x bigger then actually size with some CSS trick?

    #148981
    Skandha
    Participant

    @skynet: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
    /* To disable scroll up in mobile */

    @media screen and (min-width:550px) {
    	#scrollup {
    	    display:none !important;
    	}
    }

    You can adjust the screen size.

    /* To increase the size of scroll up button

    a#scrollup {
    	font-size:40px;
    }

    You can change the size according to your requirement.

    Let me know if this works out!
    Kind Regards,
    Skandha

    #148984
    skynet
    Participant

    Thank you Skandha, i modify i little bit the first CSS to make it work, in the rest everything work like a charm. Thank you again for help as always!

    @media screen and (min-width:550px) {
    	#scrollup {
    	    display:none !important;
    	}
    }

    To (max instead min)

    @media screen and (max-width:550px) {
    	#scrollup {
    	    display:none !important;
    	}
    }
    #148987
    Skandha
    Participant

    @skynet: Glad I could help you out. Have a nice day! 🙂

    Kind Regards,
    Skandha

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘How To Disable ScrollUP Button Only on Mobile Devices ?’ is closed to new replies.