Hi,
Wondering if someone with more code knowledge could help me. I'd like to have my manufacturer shown in a drop down list. I have the code from a 3d template that has one but for some reason cant get it to work with the formatting on my current template. Here is the code for the down down that I would like to incorporate...
<!--START: LEFT_BAR_BLOCKS--><!--START: FRAME_MANUFACTURER-->
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<form name="mfg" id="mfg" method="get" action="search_groups.asp" style="margin: 0px; padding: 0px;">
<tr>
<td class="menu-headers" align="left">[frame_manufacturer]</td>
</tr>
<tr>
<td align="center" valign="middle" height="50"><select name="manf" onChange="this.form.submit();" id="Select1" class="txtBoxStyle" style="width:140px;">
<option value=0 selected class="txtBoxStyle">Manufacturer</option>
<!--START: manufacturer_format-->
<option value=[mfgid]>[manufacturer]</option>
<!--END: manufacturer_format-->
</select></td>
</tr>
</form>
</table>
<div><img src="assets/templates/common/images/spacer.gif" width="1" height="15" alt=""></div>
<!--END: FRAME_MANUFACTURER-->
And here is my current code...
<!--START: FRAME_MANUFACTURER-->
<table width="195" cellspacing="0" cellpadding="0" border="0">
<tr>
<td class="menu-headers">[frame_manufacturer]</td>
</tr>
<tr>
<td class="mod_bg"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="assets/templates/[template]/images/spacer.gif" width="1" height="20" alt=""></td>
</tr>
<!--START: manufacturer_format-->
<tr>
<td><a href="search_groups.asp?manf=[mfgid]" class="cat">[manufacturer]</a></td>
</tr>
<!--END: manufacturer_format-->
<tr>
<td><img src="assets/templates/[template]/images/spacer.gif" width="1" height="20" alt=""></td>
</tr>
</table></td>
</tr>
</table>
<div><img src="assets/templates/[template]/images/spacer.gif" width="1" height="8" alt=""></div>
<!--END: FRAME_MANUFACTURER-->
Thanks in advance guys and girls. I really appreciate the help.
Wondering if someone with more code knowledge could help me. I'd like to have my manufacturer shown in a drop down list. I have the code from a 3d template that has one but for some reason cant get it to work with the formatting on my current template. Here is the code for the down down that I would like to incorporate...
<!--START: LEFT_BAR_BLOCKS--><!--START: FRAME_MANUFACTURER-->
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<form name="mfg" id="mfg" method="get" action="search_groups.asp" style="margin: 0px; padding: 0px;">
<tr>
<td class="menu-headers" align="left">[frame_manufacturer]</td>
</tr>
<tr>
<td align="center" valign="middle" height="50"><select name="manf" onChange="this.form.submit();" id="Select1" class="txtBoxStyle" style="width:140px;">
<option value=0 selected class="txtBoxStyle">Manufacturer</option>
<!--START: manufacturer_format-->
<option value=[mfgid]>[manufacturer]</option>
<!--END: manufacturer_format-->
</select></td>
</tr>
</form>
</table>
<div><img src="assets/templates/common/images/spacer.gif" width="1" height="15" alt=""></div>
<!--END: FRAME_MANUFACTURER-->
And here is my current code...
<!--START: FRAME_MANUFACTURER-->
<table width="195" cellspacing="0" cellpadding="0" border="0">
<tr>
<td class="menu-headers">[frame_manufacturer]</td>
</tr>
<tr>
<td class="mod_bg"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="assets/templates/[template]/images/spacer.gif" width="1" height="20" alt=""></td>
</tr>
<!--START: manufacturer_format-->
<tr>
<td><a href="search_groups.asp?manf=[mfgid]" class="cat">[manufacturer]</a></td>
</tr>
<!--END: manufacturer_format-->
<tr>
<td><img src="assets/templates/[template]/images/spacer.gif" width="1" height="20" alt=""></td>
</tr>
</table></td>
</tr>
</table>
<div><img src="assets/templates/[template]/images/spacer.gif" width="1" height="8" alt=""></div>
<!--END: FRAME_MANUFACTURER-->
Thanks in advance guys and girls. I really appreciate the help.
Comment