0

アイテムの周りの灰色の境界線を削除したい.jsfiddle の結果をここで見つけてください: http://jsfiddle.net/LdCnK/embedded/result/

ここでのコーディング: http://jsfiddle.net/LdCnK/

メイン スライダーには、html リンクが表示されます。

<div id="mi-slider" class="mi-slider">
<ul>
<li>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td align="center" valign="center">

<a href="http://click.linksynergy.com/link?id=by74Vpim1DE&offerid=249405.176558&type=2&murl=http%3A%2F%2Fwww.worldofwatches.com%2Fdetail.asp%3Fiq%3D1%26bo_products_id%3D0%26bo_products_variance_id%3D165482%26promotion_code%3DWMP7071071013141418910165482"><img src="http://www.dailycrazydeals.com/wp-content/uploads/2013/09/casio.png" alt="img11"><h4>test</h4></a>
<hr width="130%" noshade>
   </li>
</td>
</tr>   

                <tr>
                    <td>WAS:</td>
                    <td class="strikethrough">$179.95</td>
                </tr>
                <tr>
                    <td>YOU SAVE:<hr width="130%" noshade></td>
                    <td>$40.00<hr width="100%" noshade></td>
                </tr>
<tr>
<td>$139.95</td>
</tr>
</tbody>
</table>
4

1 に答える 1

0

次の行をコメントアウトするだけです

border-top: 5px solid #333333;

itemSlider/css/style.css ファイルで使用

.mi-slider nav {

    margin: 0 auto;
    max-width: 800px;
    position: relative;
    text-align: center;
    top: 400px;
}

代わりは

.mi-slider nav {
    border-top: 5px solid #333333;
    margin: 0 auto;
    max-width: 800px;
    position: relative;
    text-align: center;
    top: 400px;
}
于 2013-09-11T18:33:04.770 に答える