PDA

View Full Version : 2 errors in search results templates



fredq
05-24-2005, 06:20 PM
1. When selecting the default search results template the textarea_1 text does not conform to the odd even color scheme set in verticle.php, it is always black on white, also does not span enough columns. Here is my fix to line 50 0f the search_result_default.html.

Old line:

<tr><td colspan="5">{textarea_1}</td></tr>

New line:

<tr class="result_row_{row_num_even_odd}"><td colspan="6">{textarea_1_short}</td></tr>

2. When you select "box" for the search results template and have a listing type other that Homes the beds and baths labels plus an extra "," shows in the box. I have no fix for this one...

Thanks

FredQ

RealEstate
02-01-2006, 05:20 PM
Good catch Fred,

I was wondering why the colors were not matching.
Also, the textarea didnt give the short description with the ...

I followed part of your advise. I wanted it to lay right below the 4 middle columns.
I dindnt want it to lay below the thumbnail or the 6 column.

I used this below and is working fine.
<tr class="result_row_{row_num_even_odd}">
<td height="19">&nbsp;</td>
<td colspan="4" valign="top">{textarea_1_short}</td>
<td>&nbsp;</td>
</tr>

Is having the nbsp before and after the textare_1_short cell bad?