Can someone please tell me how to spread the Prev - listing - next buttons, in my other shop i have a button on the left the middle and on the right. Not all together in the middle. Thank you all in advance
Can someone please tell me how to spread the Prev - listing - next buttons, in my other shop i have a button on the left the middle and on the right. Not all together in the middle. Thank you all in advance
Find the section below in your stylesheet and adjust it for your taste.
..navNextPrevList {
margin: 0;
padding: 0 0.8em 0 0.8em; /* adjust it */
list-style-type: none;
}
A New Starter again
Thank you very much. Would you also know how to change the sort order of all the things in the product info display? Thanks heaps again
If you mean you want to change the positions of the contents in the Product Info Page.
And you don't mod it before.
Copy the file below:
/includes/templates/template_default/templates/tpl_product_info_display.php
And save it to your override directory:
/includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php
And in the new copied file, you can move the sections around.
And each section is already marked with:
e.g.<!--bof SECTION Name-->
.... SECTION CONTENTS ...
<!--eof SECTION Name-->
for the Product Name
.HTML Code:<!--bof Product Name--> <h1 id="productName" class="productGeneral"><?php echo $products_name; ?></h1> <!--eof Product Name-->
A New Starter again
thank you again. My a color and size attributes are too far apart. One is under the other. I thought there might be a way of how to bring them closer to each ohter. So that sizes is right above color?
For this kind of issue, provide a url to peek of will be better.
.
A New Starter again