I'm trying to clean up the css on my site, and I can't find where to edit the layout of the search.php page. My problem is that the search page has a window with a scroll bar at the right and bottom making you scroll down and right about a half inch to see the "Search" button. I would like to format the page so everything fits in the window without a need for these scroll bars. I've searched through everything I can think of on ECT and can't find where to edit this page. When I originally set up my site years ago there was a line in the includes.php:
$GLOBALS['usesearchbodyformat']=3;
I can't find any reference to this being currently used or what the different format layouts are, so don't know if it is obsolete with the new css layout and should I remove it?
I see it in the page source so you did put it in the right place. But it seems that because of the order of the CSS files the rule is not being used. So can you change it to...
div.searchform { overflow: visible !important; }
That !important will make it apply even though later rules define the same class.