我一直在尝试将照片中的图片调整到最大宽度但似乎无法确定代码。我也不能将图像集中在一起......任何提示?
我当前照片的代码:
{block:Photo}
<div class="photo">
<div align="center"> {LinkOpenTag}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt} width="600"/>{LinkCloseTag}</center>
{block:Caption}
<div class="caption" align="center"> {Caption}</div>
{/block:Caption}
{block:More} <a href="{Permalink}" class="button" align="center">{lang:Read more}</a> {/block:More}
</div>
{/block:Photo}
答案 0 :(得分:0)
在css中尝试此操作(您需要在模板中的第361行找到此代码块):
div.post div.photo img {
border-width: 0px;
position: center;
max-width: 100%;
width: 100%;
height: auto;
}
这应该重置硬编码图像大小属性,但您需要测试它