This is NOT a bug as it works for all of the templates that are included with the software script. This issue is with your customization. In looking at the page source code, the table that contains your listings are outside of the content div AND table in a totally separate table (a block element) which will naturally flow AFTER any previous block elements (the previous table).
Thanks Mike. Sorry to be a pain but as im not sure which table you mean as there are a few could you PLEASE point me in the right direction as to which table you mean ? It seems weird that my other categories seem ok, just this one ?? Thank you. Jason
Its exactly as Mike pointed out...you have the results table after the main section table. Personally I would do away with all these tables and stick to using just DIVs...much easier to work with and troubleshoot a scenario like this.
In your browse.tpl, you have unbalanced html elements and you have smarty elements ending inside of html elements that were started outside of the elements. I would highly recommend that you use tabs to line up all of your elements (smarty and html). It makes the code much easier to read, troubleshoot and balance. You also have two </td> elements in a row right after you end a smarty {/if} that didn't even start in the same <td>. You should also NOT BE CUSTOMIZING THE DEFAULT TEMPLATE! You should be using a renamed copy of it. That way you always have a good template to use in the case of an issue with your custom template.
what would it cost to get this sorted out, so that I don't make a real pigs ear of it again ? without changing the layout of it ? PLEASE
ISSUE RESOLVED ! I have got it sorted. Although I would now like to tidy up my layout in my files any pointers ?