ok, I have my custom search template looking and appearing the way i want it. It is functioning as far as searching and displaying those results is concerned. My issue is its listing all 50 results(per page) in one single lenthy column within the table for the results, i want it to display 3 columns and i have selected 3 colums within my search page setting in the Back Office, but its refusing to display 3 columns only 1.
Any idea why? Is this once again some silly and small that i have missed?
Here is my code for my custom template
- Code: Select all
[-- DEFINE SEARCH_RESULTS --]
<html>
<head>
<title>[-- PAGE.Title --]</title>
<meta name="keywords" content="[-- PAGE.MetaKeywords --]">
<meta name="description" content="[-- PAGE.MetaDescription --]">
[-- INCLUDE all_pages_header --]
</head>
<body>
<div id="wholepagewrap">
<div id="mainwrap">[-- HEADER --]</div>
<div id="centralspacewrap">
<table width="938" align="center" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3" class="breadcrumbs"> </td>
</tr>
<tr><td> </td>
</tr>
<tr>
<td colspan="3" valign="top" class="mainh1header"><h1>[-- PAGE.Name --]</h1></td>
</tr>
<tr>
<td colspan="3" valign="top"><table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td valign="top"><table width="180" cellspacing="0" cellpadding="0"><tr><td>[-- INCLUDE sidebarnavigation --]</td></tr></table></td>
<td valign="top" class="menudivide"> </td>
<td valign="top" ><table width="744" cellspacing="0" cellpadding="0">
<tr>
<td colspan="3">[-- IF SEARCHTOP --][-- SEARCHRESULT_FORM --][-- END_IF --]</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><div id="search_results_header"><h3>[--Store.SearchResults --]: <span class="result">[-- SearchString --]</span></h3></div></td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><table width="744" border="0" cellpadding="0" cellspacing="0">
[-- LOOP SEARCH PAGE.Columns --]<tr>
<td valign="top" align="left">[-- SEARCHRESULT --]</td>
</tr>[-- END_LOOP SEARCH--]
</table></td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3">[-- IF SEARCHBOTTOM --][-- SEARCHRESULT_FORM --][-- END_IF --]</td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td colspan="3" valign="top"> </td>
</tr>
</table>
</div>
<div id="footerwrap">[-- FOOTER --]</div>
</div>
</body>
</html>
[-- END_DEFINE SEARCH_RESULTS --]