有 1 筆資料符合您搜尋的條件

懸壺子
2009-06-11 , 8:59
版面: phpBB3.0.x
主題: [修改]圖高度右方捲軸
回覆: 0
觀看: 1038

[修改]圖高度右方捲軸

[修改]圖高度右方捲軸

來源:http://phpbb-tw.net/phpbb/viewtopic.php?f=140&t=51977


suner 寫: 修改/styles/prosilver/theme/content.css


找到

代碼: 選擇全部

.attach-image {
   margin: 3px 0;
   width: 100%;
   max-height: 350px;
   overflow: auto;
}



修改為

代碼: 選擇全部

.attach-image {
   margin: 3px 0;
   width: 100%;
   /* max-height: 350px; */
   overflow: auto;
}
把其中max-height的設定mark掉..
ACP > 風格 > 主題 > prosilver > 重新整理

心靈捕手 寫: 如果您不怕撐破版面,想完整呈現圖片的話,那麼試試底下修改。

代碼: 選擇全部

.attach-image {
   margin: 3px 0;
   width: 100%;
   /*max-height: 350px;*/
   /*overflow: auto;*/
   height: 100%;
   overflow: visible;
}

回到「[修改]圖高度右方捲軸」