

- 300M國內(nèi)免備案空間
300M網(wǎng)站空間,送60M數(shù)據(jù)庫!
現(xiàn)價(jià)只要:22元/月 - 500M國內(nèi)免備案空間
500M網(wǎng)站空間,送100M數(shù)據(jù)庫!
現(xiàn)價(jià)只要:29元/月 - 1G國內(nèi)免備案空間
1G網(wǎng)站空間,送300M數(shù)據(jù)庫!
現(xiàn)價(jià)只要:39元/月 - 500M香港免備案空間
500M網(wǎng)站空間,送160M數(shù)據(jù)庫!
現(xiàn)價(jià)只要:26元/月 - 1G香港免備案空間
1G網(wǎng)站空間,送300M數(shù)據(jù)庫!
現(xiàn)價(jià)只要:36元/月 - 100M美國空間
100M網(wǎng)站空間,送30M數(shù)據(jù)庫!
現(xiàn)價(jià)只要:12.8元/月

購買國內(nèi)免備案空間 | 購買香港空間【不限iis】 | 寬屏網(wǎng)站制作【還送手機(jī)網(wǎng)站】 |
香港云主機(jī)/99元/月 | 國內(nèi)空間【免費(fèi)備案】 | 特價(jià)網(wǎng)站空間 |
.Net專用空間 | 網(wǎng)站快速排名 | 游戲空間【支持月付】 |
在用phpweb建站過程中,可能有些模板的問題,導(dǎo)致圖片詳情中大圖不顯示,如果處理這個(gè)問題呢,下面給大家分享一下解決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>