Thanks for your help Diva, i managed to get it working by doing a series of re-installing fresh, deleting that file and messing about a bit :)
Printable View
I installed this mod and work great... I have only a cosmetic problem. In the first tab (the most important) the text it not have any margin on the left. The others tab are fine but the product description look odd.
Please take a look:
http://www.cryo64.com/margin0.jpg
This is the link to see if any of you can tell me what CSS file I need to fix. Thanks
http://cryo64.com/store/index.php?ma...&products_id=8
DArnaez, Try adding this to your stylesheet.css:
Code:.productGeneral.biggerText {margin: 0 0 0 15px;}
It works!!!!!!! Fantastic! Thanks!!!... Now.. to move away of the line in the bottom? I tried {margin: 0 0 10 15px;}, {margin: 0 10 0 15px;} and {margin: 10 0 0 15px;}... but nothing works.
I should just add some </br> into the products description? or with the CSS can I do it?
BTW Thanks a lot!
try:
padding-bottom:15px
Hey, we're preparing a big revamp of our product info pages and I want Tabbed products to be a part of it. I have installed this on our test server and really like it. There's just a bit of layout that's holding us back. I think the Product Extra Fields mod will take care of it but I'm not sure if they will play nicely together. Essentially, we want the image in the top left, some product data across the top right and then the tabbed description, etc. spanning all the way across below them. Any thoughts?
I've added attributes to my products and the tab just shows up as "attributes". How do I change that based on the attributes they can choose from?
Ideally: Is there a way to move that above the "add to cart" instead of being tabbed?
I've add the module "Numinix Product Fields" to my site. How do I add the upc and the sku so that they show up on the Details Tab.
I tried adding this to my tpl_product_info_display.php, but it still does not show up.
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))) ) { ?>
<?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_dimensions == 1) or ($flag_show_product_info_condition == 1) or ($flag_show_product_info_upc == 1) or ($flag_show_product_info_isbn == 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>' . $products_weight_display . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_actual_weight == 1 and $products_actual_weight != 0) ? '<li>' . $products_actual_weight_display . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_dimensions == 1 && ($products_length != 0 || $products_width != 0 || $products_height != 0)) ? '<li>' . $products_dim_display . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_diameter == 1 && $products_diameter != '') ? '<li>' . $products_diameter_display . '</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"; ?>
<?php echo (($flag_show_product_info_condition == 1 and $products_condition != '') ? '<li>' . TEXT_PRODUCTS_CONDITION . $products_condition . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_upc == 1 and $products_upc != '') ? '<li>' . TEXT_PRODUCTS_UPC . $products_upc . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_isbn == 1 and $products_isbn != '') ? '<li>' . TEXT_PRODUCTS_ISBN . $products_isbn . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_sku == 1 and $products_sku != '') ? '<li>' . TEXT_PRODUCTS_SKU . $products_sku . '</li>' : '') . "\n"; ?>
</ul>
<br class="clearBoth" />
<?php
}
?>
<!--eof Product details list -->
Good news! I've also gotten Numinix Fields to work with TPP and it's just about perfect for my needs.
I was wondering where I would find the style for the background and border of the display for TPP. I found tabs that look great with my site but the rest needs work.