Fix for Border Radius in Safari

For those having the issue where Border Radius displays on all field borders in Safari browser even when you have it turned off for some field borders, current fix for this is:

  1. Change all borders to 0 in grey Bubble panel
  2. Turn on HTML element ID in your Settings section
  3. Add an ID for each field in grey Bubble panel
  4. Add the following CSS or similar (this one displays a single white bottom border for an input field) to the ‘script in header’ field in Settings > SEO & Metatags
#inputone {border-bottom: 1px solid #fff !important; -webkit-border-radius: 0px;} #inputtwo {border-bottom: 1px solid #fff !important; -webkit-border-radius: 0px;} #dropdown {border-bottom: 1px solid #fff;}

J.