How to eliminate the dotted frame around pushed button?

Add this to your Script/meta tags in header (Settings -> SEO / Metatags -> Advanced settings)

   <style>
    * {outline: none !important;}
   </style>

This will remove it from all elements. You can replace the “*” by css classes / ids to target specific elements.

21 Likes