Site logo

[Resolved] Search input stying iOS Safari

Home Forums Support [Resolved] Search input stying iOS Safari

Home Forums Support Search input stying iOS Safari

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2545168
    Paul

    Hi There,

    I have the following CSS for the search input in the nav which works fine – however I’m seeing the a light blue border on iPhone, I’m guessing this is due to browser settings and can’t be over-ridden?

    .navigation-search input[type="search"] {
        border: 2px solid var(--primary-purple);
    	  border-radius: 8px;
    }

    Cheers

    #2545253
    David
    Staff
    Customer Support

    Hi there,

    the blue outline does come from browser styles.

    Try adding this CSS to remove it:

    .navigation-search input[type="search"] {
        outline: 0 !important;
    }
    #2545308
    Paul

    Cheers David, That worked 🙂

    #2545368
    David
    Staff
    Customer Support

    Glad to hear that

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.