• Resolved halski83

    (@halski83)


    Hi guys,

    It seems that when resolution is lower than 1366×768 floating buttons are covering the content: https://imgur.com/a/RnjrSlW

    Could you please advise on how could I do to fix that? Other than that the plugin is simply great.

    Best regards,
    Olgierd

    EDIT: screen comes from latest Firefox on Ubuntu.

    • This topic was modified 6 years, 10 months ago by halski83.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author CrestaProject

    (@crestaproject)

    Hi @halski83
    you can try to hide the floating buttons from 1365px screen width until 768px. Go to your WordPress Dashboard under “Appearance-> Customize-> Additional CSS” and paste this code:

    
    @media all and (max-width: 1365px) {
    	#crestashareicon {
    		display: none;
    	}
    }
    @media all and (max-width: 768px) {
    	#crestashareicon {
    		display: block;
    	}
    }
    

    Best Regards,
    CrestaProject

    Thread Starter halski83

    (@halski83)

    Works like a charm :),

    Thank you very much.

    Olgierd

    • This reply was modified 6 years, 10 months ago by halski83.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘on resolution slightly lower than 1366×768 floating buttons are covering page’ is closed to new replies.