I have a Magento Multistore installation, 2 stores actually.
1st store uses a custom developed theme by a company.
Check specification tab:
2nd site, uses a theme we bought, but also uses EASYTABS, a free extension with no support.
In the product catalog the FIELD that renders this specification its exactly the same.
Maybe its a problem in a CSS or I dont know. Can somebody please help me to fix this issue of the spaces to make it look as store number 1?
This seems to be the file that renders that tab. I enabled path hints in Magento, maybe with this can you help me a little further
<?php
if(Mage::getStoreConfig('easy_tabs/custom/customtabid')){
$method = 'get' . ucfirst(Mage::getStoreConfig('easy_tabs/custom/customtabid'));
$content = nl2br($this->getProduct()->$method());
if(!empty($content)){
echo '<div class="product-specs">'.$content.'</div>';
}
}
?>
It looks like you’re allowed to put HTML markup in the Specification, so change this line:
to:
and you won’t have all the extra
<br>tags (spaces).