购买国内免备案空间 | 购买香港空间【不限iis】 | 宽屏网站制作【还送手机网站】 |
香港云主机/99元/月 | 国内空间【免费备案】 | 特价网站空间 |
.Net专用空间 | 网站快速排名 | 游戏空间【支持月付】 |
在用phpweb建站过程中,可能有些模板的问题,导致图片详情中大图不显示,如果处理这个问题呢,下面给大家分享一下解决phpweb图片详情中不显示图片解决方法:
在ftp空间的文件夹 photo/templets中找到文件tpl_photo_content.htm,需要修改显示图片的源代码
如上图所示:
只需要将上图中的代码替换掉,附上修改的代码:
<table align="center" cellpadding="10" cellspacing="0">
<tr>
<td>
<div id="contentpages"></div>
</td></tr></table>
</div>
<div class="photozone">
<table align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center">
<div id="photoview">
<img src="images/loading.gif" border="0" id="photoloading" class="photoloading">
</div>
</td>
</tr>
</table>
替换为:
<table align="center" cellpadding="10" cellspacing="0">
<tr>
<td>
<div id="contentpages"></div>
</td></tr></table>
</div>
<div class="photozone">
<table align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center">
<style type="text/css">
.imagessss img { max-width:600px;}
</style>
<div class="imagessss">
<img src="{#src#}" border="0">
</div>
</td>
</tr>
</table>