Hi i need to Style the product-collateral box on product detail page .
can we display the description , additional information tabs without using tab, can we show them all in 2 columns so user no need to click tabs thanks
Hi asimnzm,
Could you provide a link to your site, where you would like to do that. Helps seeing what you would like to accomplish
Search the net a bit, and found this solution on stack... maybe this could help you.
For Remove Additional Information Tab comment following code from catalog.xml
<action method="addTab" translate="title" module="catalog"><alias>additional</alias><title>Additional Information</title><block>catalog/product_view_attributes</block><template>catalog/product/view/attributes.phtml</template></action>
For display Additional Information in Product Description Tab paste following code in
"catalog/product/view/description.phtml" file.
<?php echo $this->getLayout()->createBlock('catalog/product_view_attributes', '', array('template'=> 'catalog/product/view/attributes.phtml'))->toHtml(); ?>
Best Luck !!