First, thank you for the reply. I think that I am starting to understand this... I've gotten to the point where I have removed a few table elements and popped a few divs in, so at least I can KIND of see what I'm doing. These are the next steps:
1. I need to get access to the product name, picture, price and add to cart button so I can style them using divs instead of table elements - is this possible?
Do I need to be making changes within [-- SEARCHRESULT --] - or is that even possible?
2. The client asked that items with multiple sizes / prices dropdown menues show up. Personally, I'd put them right after price.
3. As you can see, my div with the grey border around the page link is repeating, but I'm not sure how else to place this to prevent it from hallening.
The page is here (search in top right and sidebar): http://www.brotherscountrysupply.com/store/
My search query for testing is "iams"
Here is the code in my SEARCH template (I'm only using inline styles for testing purposes) - I'm stuck...
- Code: Select all
<div style="width:600px; padding:10px; margin-right:auto; margin-left:auto; margin-top: 25px; margin-bottom: 25px; border: 2px dashed #FF0; ">
[-- VAR.pa_search_result "false" --]
[-- LOOP SEARCH --]
[-- IF SEARCHLINK --]
<div style="border: 1px dashed #CCC; padding: 10px; font-weight:bold;">
This item is available on the following pages:<br />
[-- END_IF --]
[-- SEARCHRESULT --]
[-- IF SEARCHLINK --]
</div><!--SearchLinkedPagesWrapper-->
[-- END_IF --]
[-- VAR.pa_search_result "true" --]
[-- END_LOOP SEARCH--]
[-- IF VAR.pa_search_result "false" --]
<tr><td align="left" valign="top">[-- STORE.88 --] [-- SEARCHSTRING --]</td></tr>
[-- END_IF --]
[-- IF VAR.Quantityproduct "yes" --]
<tr><td>[-- Store.QuantityPricingFlag --] [-- Store.QuantityPricingMsg --]</td></tr>
[-- END_IF --]
[-- IF VAR.Variableproduct "yes" --]
<tr><td>[-- Store.VariablePricingFlag --] [-- Store.VariablePricingMsg --]</td></tr>
[-- END_IF --]
</div><!--SearchResultsWrapper-->
Thanks so much.