PDA

View Full Version : Atomz Search Box



nezmin2
08-29-2004, 07:27 PM
I am in the process of updating my site and am currently using the Atomz Site Search. I would like to know if anyone out there knows how to change the color of the search box, if possible. The white background does not flow with my new theme.

AlexDP
08-29-2004, 08:12 PM
You can use a simple CSS.

Add this to your files <head> or include in external CSS file. Obviously, you can change the colour.

<style type="text/css">
<!--
.form { background-color: #FFFFCC}
-->
</style>

And then change the Atomz search form as below.

<form method="get" action="http://search.atomz.com/search/">
<input size="15" name="sp-q" class="form">


<input type="submit" value="Search">
<input type="hidden" name="sp-a" value="sp12345678">
<input type="hidden" name="sp-p" value="any">
<input type="hidden" name="sp-f" value="iso-8859-1">
</form>

Hope this helps,

Alex