I’m facing the same issue and I was able to fix it for now, but this is something the developer has to fix in the next patch.
We are using Autoptimize which aggregates CSS, that’s where the CSS breaks. The offending code can be located here:
wp-content/plugins/sassy-social-share/public/css/sassy-social-share-public.css
wp-content/plugins/sassy-social-share/public/class-sassy-social-share-public.php
Both these files are missing a closing bracket ‘}’ for CSS for this rule:
@media screen and (max-width:783px){#heateor_sss_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}
It should be:
@media screen and (max-width:783px){#heateor_sss_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}}
As a temporary fix I have uploaded these files, but as mentioned this is something developer MUST address in the next patch.
-
This reply was modified 9 months ago by Aivaras Stankevicius. Reason: Added tags for a better visibility of the issue