i have the inconsolata font in the spotlight theme but the only area of my store that doesnt utilise this font is the search bar when i type a term. can this be changed? if so, is it done in the automatic customisation or manually with a code? please help and thanks! i will include a screenshot below
Hi @gatdesigns
Thank you for reaching out to the shopify community.
In order to change the font of search bar and email sign up input you can target that input field’s type and add the font family property in base.css file in Assets folder in your theme editor. Ex-
For search bar -
input[type='search']{
font-family: inconsolata;
}
For email sign up -
input[type='email']{
font-family: inconsolata;
}
Screen Shot for reference -
If you want to change font of all input fields, you don’t have to target type of input fields specifically:-
If the font still didn’t change, please send your store URL with password(if password protected), so that I can give you a solution further.
Do give it a try and let me know if this was helpful.
Thanks
This was very helpful thank you very much!



