Hi David.
Below is my searchresults code, can you tell me how i add the following:
1: add next and previous at the bottom of the results to show more. 2: Make the more information into a button.
{link saved}
{code saved}
Hi Paul,
I just replied here regarding adding the navigation to your custom pages...
To make the links into a button, you should just be able to use Bootstrap's btn/btn-primary' classes so in your code, look for the 2 instances of:
<a href='<?php print $product["productHREF"]; ?>'>
(lines 45/48) and replace with:
<a class='btn btn-primary' href='<?php print $product["productHREF"]; ?>'>
(there are other btn-* classes for different colours, see this page...)
Cheers, David. -- PriceTapestry.com
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi Paul,
I just replied here regarding adding the navigation to your custom pages...
To make the links into a button, you should just be able to use Bootstrap's btn/btn-primary' classes so in your code, look for the 2 instances of:
<a href='<?php print $product["productHREF"]; ?>'>
(lines 45/48) and replace with:
<a class='btn btn-primary' href='<?php print $product["productHREF"]; ?>'>
(there are other btn-* classes for different colours, see this page...)
Cheers,
David.
--
PriceTapestry.com