Posted by Ken Anklovitch
2014-10-24

Hi Tom
Is there a way to make the input boxes in the Search Criteria area bigger?

Thank you
Ken
Posted by Tom
2014-10-30

Hi Ken,

>Is there a way to make the input boxes in the Search Criteria area bigger?

You can change the font size of the input boxes. To do so, open the template (web/staff/tpl.(table-name).search.inc.php) in a text editor and enclose the search criteria box with <div> like this.
<style>
.search-criteria input {
font-size:30px;
}
</style>
<div class='search-criteria'>

....search criteria box should be here...

</div>
The example above will change the font size of the input box inside the div to 30px.