【发布时间】:2017-06-02 14:11:44
【问题描述】:
我正在使用 shopify,并在其中添加了一个使用我自己的 html 的部分。我在主题中内置的“特色产品”部分中添加了口红、脸部和与其中一种产品重叠的脸部图片。我想知道我将如何解决这个问题?我需要进去用液体修理东西吗?
我已经通过使用 html 中的表格解决了这个问题;我为未来的读者提供了我的解决方案。
HTML
<div class="hover">
<center>
<table style="width: 182px; height: 159px;">
<tbody>
<tr style="height: 33px;">
<td style="width: 57.125px; height: 20px;">
<figure><img align=left valign=top width=350px type="image/jpeg" src="{{ 'lipstickpink.jpg' | asset_url}}" /></figure>
<figure> <img align=left valign=bottom width=400px type="image/jpeg" src="{{ 'shadow.jpg' | asset_url}}" /> </figure>
</td>
<td style="width: 900px; ">
<figure><img align=center valign=top width=900px type="image/jpeg" src="{{ 'facehomepage.jpg' | asset_url}}" /></figure>
</td>
</center>
</td>
</tr>
</tbody>
</table>
【问题讨论】:
标签: html css image shopify liquid