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;
}
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
http://flirtforhim.com/cart/index.ph...&products_id=1
i want the size to be closer to the color, under or to the side it doesnt matter
Thank you again
From page source of your site, it may be missing the <br class="clearBoth" /> in the section of
<!--bof Product details list -->
,or in other sections.
I had tried to insert the <br class="clearBoth" /> in the following and it seems improve the problem.
And if you had modified the file, you may check that if the modifications are correct made.<!--bof Add to Cart Box -->
...
<!--eof Add to Cart Box-->
<!--bof Product details list -->
<!--eof Product details list -->
<br class="clearBoth" />
<!--bof Attributes Module -->
...
</div><!--eof Attributes Module -->
Last edited by seethrou; 16 Sep 2006 at 08:14 AM. Reason: Add more info.
A New Starter again
I am sorry where do i add that to? I am not really sure what page?