Viewing 5 replies - 1 through 5 (of 5 total)
  • I would add some CSS media queries to hide it. What have you tried?

    Can you give me url address of your web site, so I can write down the CSS you need?

    I was trying to do this in the “advanced settings – additional options” of this plugin:

    addthis.layers() initial paramater (json format)
    -> with
    “mobile” : “false”

    according to documentation it should work, but as far as I see this has no effect !

    Well, I think this option is for API only.

    Try add this into your CSS file:

    @media screen and (max-width: 768px) {
        .at-share-btn {
    		display: none!important;
    	}
    }

    This is working because the default position si “bottom”.

    //*SMALL DEVICES LIKE SMARTPHONES*//
    @media only screen and (max-device-width: 800px) {
    .at4m-dock-bottom {
    display: none;
    }}

    //*ALL DEVICES INCLUDING TABLETS MAX WIDTH*//
    @media only screen and (max-width: 800px) {
    .at4m-dock-bottom {
    display: none;
    }}

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to disable on mobile?’ is closed to new replies.