シンプルは100x100pxに固定して表示させるようになっている みたいですね。しかも、商品画像の上にリンク用の100x100pxの 透明画像がのっているみたいですから修正が大変かも。
基本的には一覧用の画像が100x100以下になるように設定して
以下のように共通のCSSを編集してみてはいかがでしょう /* ************************************************ * コンテンツ共通 * ************************************************ */
/* ------------------------------------- * 100px×100pxの縮小画像表示 * ※トップ及びサブカテゴリー表示時に使用 * ------------------------------------- */ .item_box { text-align: center; padding-bottom: 10px; width: 120px; float: left; }
.item_thumbnail { margin: 0px 0px 5px 10px; width: 100px; overflow: hidden; position: relative; }
.item_thumbnail img { width: 100px; }
.item_frame { border: 0px; width: 100px; position: absolute; top: 0px; left: 0px; z-index: 1; }
height: 100px;を消しただけです。
|