Luna主题帮助 - 产品图片

时间:2015-07-26 02:25:12

标签: image product

我使用Luna主题,并希望将家庭和产品页面上的图像视为正方形(以适合主题),然后在点击产品时将其视为原始风景照片。这可能吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

你的问题非常模糊,但我认为这是你的解决方案:

在查看模板后从源中翻录,这是“产品”页面中的示例。这是原始代码:

<li id="product_9230867" class="product">
  <a href="/product/mobile-ready" title="View Mobile Ready">
    <div class="product_header">
      <h2>Mobile Ready</h2>
      <span class="dash"></span>            
      <h3><span class="currency_sign">$</span>20.00</h3>
    </div>
    <div class="product_thumb">
      <img src="http://images.cdn.bigcartel.com/bigcartel/product_images/95861562/max_w-560/MobileRun.png" class="fade_in" alt="Image of Mobile Ready">
    </div>
  </a>
</li>

将链接的“href”更改为图像网址,如下所示:

<li id="product_9230867" class="product">
  <a href="THE_URL_TO_YOUR_IMAGE" title="View Mobile Ready">
    <div class="product_header">
      <h2>Mobile Ready</h2>
      <span class="dash"></span>            
      <h3><span class="currency_sign">$</span>20.00</h3>
    </div>
    <div class="product_thumb">
      <img src="http://images.cdn.bigcartel.com/bigcartel/product_images/95861562/max_w-560/MobileRun.png" class="fade_in" alt="Image of Mobile Ready">
    </div>
  </a>
</li>

现在,如果你想让它弹出非常漂亮,你将需要另一种解决方案。如果你想要一个更好的解决方案,我建议你用已经尝试过的例子提出一个更清晰的问题。