On a mobile page is there a way to increase the height of the search box?

 … I would like a page where the search box was quite prominent? and it is appearing quite small making it more difficult to select by touch,

Can it’s height on the page be adjusted somehow with css?

Hi

If you mean the search box on a deck, simply add some inline-CSS to the searchbox class (which is the class of the searchbox)

for example:

&#46;searchbox {<br />&nbsp; font-size: 2em;<br />&nbsp; width: 15em;<br />}


Of course you could change the border-color/size or whatever you like to fit your needs.

Fantastic. Thanks for the help )