自定义选项打破了我的magento主题,我该如何解决?

时间:2017-09-29 02:55:44

标签: magento

当我在我的magento产品中添加自定义选项时,我使用magento 1.7.02我的主题由于某种原因被破坏,我尝试在view.phtml(模板/目录/产品)中更改某些内容但没有成功... < / p>

我不知道我可以在哪里修改,我尝试从自定义选项更改位置,但没有任何效果 请问一些想法?

Product With Custom Option

Product without Custom Option

*the code in view.phtml 

<!-- AddThis Button END --> 
    </div>
  </div>
  <div class="clearer"></div>
</form>

1 个答案:

答案 0 :(得分:0)

我可以看到两个标签Product DescriptionProduct tags正好显示的解决方案

打开http://www.boutiquekawaii.com/corsets/corset-test.html 通过右键单击进行检查,然后选择Inspect

现在在“元素”标签中搜索此类product-shop span8 你会找到像这样的div

<div class="product-shop span8">
....
   <div class="clearer"></div> <!-- you need to move this -->
</div>

并且在那个div中有一个像<div class="clearer"></div>这样的div,它不应该存在。该div应该在

之后 像这样

<div class="product-shop span8">
    ....
</div>
<div class="clearer"></div> <!-- and place it here before </form> tag -->
</form>

你会得到这个结果。就像你的其他页面一样。 you will have result

这样打开该文件template/catalog/product/view.phtml找{4},然后像我说的那样改变它。