Select to view content in your preferred language

Customizing font size and boldness for locator placeholder text in Zone Lookup App

166
1
Jump to solution
4 weeks ago
Labels (1)
HenriettaK
New Contributor II

Hello Instant Apps Community!

I have built an instant app using the Zone Lookup template and have rolled it out for testing to the organization. A lot of the feedback has been about bolding the placeholder text in the address search bar or somehow making the search bar larger. The app currently looks like this: 

HenriettaK_0-1715626536190.png

Is there a way to bold or increase the font size of the geolocator placeholder text that reads "Find address or place"? 

Also, is there a way to increase the size of the address search bar?

Thank you so much and I appreciate any help!

1 Solution

Accepted Solutions
KellyHutchins
Esri Frequent Contributor

You can increase the font size and bold the text by adding the following to the custom CSS config option: 

 

.esri-search__form .esri-input[type=text] {
    font-size: 22px;
    font-weight: bold;
}

View solution in original post

0 Kudos
1 Reply
KellyHutchins
Esri Frequent Contributor

You can increase the font size and bold the text by adding the following to the custom CSS config option: 

 

.esri-search__form .esri-input[type=text] {
    font-size: 22px;
    font-weight: bold;
}
0 Kudos