Site logo

Archived topic

Search input stying iOS Safari

3 replies · Started by Paul on February 24, 2023

Viewing posts 1–4 of 4

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

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;
}

Cheers David, That worked :)

Glad to hear that

This archived topic is closed to new replies.