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
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?
Still within the override file of above file tpl_product_info_display.php.
In line no. 124,
the original file already have the <br class="clearBoth" /> in there,
it near the end of the section below (line no. 116 -128 in v1.3.5 ).
May be it has been altered while modifications.
PHP Code:<!--bof Product details list -->
<?php if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?>
<ul id="productDetailsList" class="floatingBox back">
<?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li>' . TEXT_PRODUCT_WEIGHT . $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>
</ul>
<br class="clearBoth" />
<?php
}
?>
<!--eof Product details list -->
A New Starter again