Pinpointing the difference and changes made between two pages in magento 1.6.2

前端 未结 1 1002
南旧
南旧 2021-01-28 02:01

I have two pages that should be using the exact same template and layout.

The correct item layout can be seen below. http://dokha.co/index.php/medwakh/custom-medwakh-fro

相关标签:
1条回答
  • 2021-01-28 02:50

    Ok, first thing: the layouts are slightly different because in the first example, you have simple product and in the second example you have a configurable product.

    So, view.phtml is including different templates in each.

    Regardless though, the actually culprit of the expanded space you are seeing in the second example is being caused by a clearing div. Simply remove it.

    The div you are looking for is this:

    <div class="clearer"></div>
    

    and you will find it in app/design/frontend/your_package/your_theme/template/catalog/product/view.phtml

    0 讨论(0)
提交回复
热议问题