Advertisement
Advertisement
| 07.11.2008 at 02:35AM PDT, ID: 23556591 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: |
CSS
.search{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
font-weight:bold;
color:#ffffff;
}
#searchbox{
width: 620px;
background-color:#66CC66;
padding:0px 0px 0px 0px;
}
p.formLine{
padding: 0 0 0 0;
float:left;
margin: 5px;
font-family:Arial, Helvetica, sans-serif;
font-size:11px;
color:#000066;
}
label
{
text-align: left;
margin-left: 0em;
padding: 5px 0 0 0;
display:block;
}
#submitbut{
width: 80px;
height: 20px;
}
.formButton{
color:#223289;
background-color:#FF9D1C;
font-weight:bold;
}
.formSubmit{
padding-left: 5px;
padding: 20px 0 0 0;
}
#searchtitle{
width: 94px;
height: 30px;
background:url(../images/search_back.gif) no-repeat;
}
.module_quick_search{
background:url(http://www.suttonscityliving.co.uk/newsite/templates/suttonsfriday/images/search.gif) no-repeat;
width: 600px;
height: 80px;
padding-top: 20px;
background-color:#C6C6C6;
}
.searchtext{
color:#fff;
font-size: 12px;
font-weight:bold;
padding: 10px 0 0 7px;
font-family:Arial, Helvetica, sans-serif;
}
.clearFix {
clear:both;
overflow:hidden;
font-size:0px;
height:0px;
}
html
<!-- start module quick_search -->
<div class="module_quick_search">
<!--<div class="searchtext" id="searchtitle">Quick Search</div>-->
<form name="quick_search"class="searchform quicksearch" method="post" action="HERE_GOES_FORM_ACTION_PAGE">
<!--<h3>Quick Search</h3>-->
<p class="formLine">
<label for="name"><strong>Min. price:</strong></label>
HERE_GOES_SEARCH_FORM_FIELD_MINPRICE
</p>
<p class="formLine">
<label for="name"><strong>Max. price: </strong></label>
HERE_GOES_SEARCH_FORM_FIELD_MAXPRICE
</p>
<p class="formLine">
<label for="name"><strong>Bedrooms: </strong></label>
HERE_GOES_SEARCH_FORM_FIELD_BEDROOMS
</p>
<p class="formLine">
<label for="name"><strong>Search by</strong></label>
HERE_GOES_SEARCH_FORM_FIELD_UK_OVERSEAS
</p>
<p class="formLine"><strong>Location, Postcode, Keywords: </strong>HERE_GOES_SEARCH_FORM_FIELD_KEYWORDS</p>
<!--<p class="formLine"><strong>Area: </strong>
</p>-->
<p class="formSubmit">
<input type="submit"class="formButton"value="Search"/>
</p>
</form>
</div>
<!-- end module quick_search -->
|