Posted by Ryan Smith
2014-03-29

Tom- That did not solve the problem. That actually made it worse. I shortened the width and it discombobulated them even more. I like the page length now. The text inside "Search Criteria" is very large and I'm trying to figure out how to make the boxes and text smaller.
Posted by Tom
2014-03-30

>The text inside "Search Criteria" is very large

Now I see what you mean. Then you can make the font size small. Enclose the search criteria table with <div id='search-criteria'>... </div>, then put this style in the <head> section of the page.
<style>
#search-criteria table tr td {
font-size:12px;
}
</style>
This will make the font size of text inside search criteria 12px.