Posted by Matthew Sarino
2014-07-18

Hi Tom,

I am seeing little white square boxes at the border corners of the search and search results box. how do I remove these?
Posted by Tom
2014-07-19

> little white square boxes at the border corners of the search and search results box.

I'm not sure what you meant by "little white square boxes" but here is a solution. You can replace the default section borders with regular html tags. To do so, open web/staff/app/cls-hm_base.inc.php. Find the following code:
/*
//----------------------------------------------------------------
// Section
//----------------------------------------------------------------
function SectBegin( $label = null )
{
?-->
<fieldset>
<--?php if ( $label != null ) { ?-->
<legend class="legendTitle"><--?php echo $label; ?--></legend><center>
<--?php } ?-->
<--?php
}

function SectEnd()
{
?-->
</center></fieldset>
<--?php
}

function SectEndMarker()
{
}
*/
Replace it with the code below:
	//----------------------------------------------------------------
// Section
//----------------------------------------------------------------
function SectBegin( $label = null )
{
?>
<fieldset>
<?php if ( $label != null ) { ?>
<legend class="legendTitle"><?php echo $label; ?></legend><center>
<?php } ?>
<?php
}

function SectEnd()
{
?>
</center></fieldset>
<?php
}

function SectEndMarker()
{
}
Section boarders will be drawn in those HTML tabs (<fieldset>,<legend>) Please spice them up with CSS.