1 つの Web ページに 2 つの nivo スライダーを挿入する方法の dev7 studio の例からコードをコピーしましたが、最初のスライダーで矢印のみを使用する方法など、各スライダーの個々の設定を微調整する方法がわかりません。スライダーは箇条書きのみを使用します。また、矢印と箇条書きの位置に関して、各スライダーの高さと幅をどのように調整しますか。
style.css は次のとおりです。
/*=================================*/
   /* Nivo Slider Demo
   /* November 2010
   /* By: Gilbert Pellegrom
   /* http://dev7studios.com
   /*=================================*/
   /*====================*/
   /*=== Reset Styles ===*/
   /*====================*/
   html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-weight:inherit;
    font-style:inherit;
    font-size:100%;
    font-family:inherit;
    vertical-align:baseline;
}
body {
    line-height:1;
    color:black;
    background:white;
}
table {
    border-collapse:separate;
    border-spacing:0;
}
caption, th, td {
    text-align:left;
    font-weight:normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:"";
}
blockquote, q {
    quotes:"" "";
}
/* HTML5 tags */
header, section, footer,
aside, nav, article, figure {
    display: block;
}
/*===================*/
/*=== Main Styles ===*/
/*===================*/
body {
    font:14px/1.6 Georgia, Palatino, Palatino Linotype, Times, Times New Roman, serif;
    color:#333;
    background:#eee;
}
a, a:visited {
    color:blue;
    text-decoration:none;
}
a:hover, a:active {
    color:#000;
    text-decoration:none;
}
#dev7link {
    position:absolute;
    top:0;
    left:50px;
    background:url(images/dev7logo.png) no-repeat;
    width:60px;
    height:67px;
    border:0;
    display:block;
    text-indent:-9999px;
}
.default #slider {
    margin:100px auto 0 auto;
    width:960px; /* Make sure your images are the same size */
    height:310px; /* Make sure your images are the same size */
}
.default #slider2 {
    margin:100px auto 0 auto;
    width:280px; /* Make sure your images are the same size */
    height:65px; /* Make sure your images are the same size */
}
slider-wrapper,
lider-wrapper {
    margin-top:150px;
}
/*====================*/
/*=== Other Styles ===*/
/*====================*/
.clear {
    clear:both;
}
これが default.css です。
/*
Skin Name: Nivo Slider Default Theme
Skin URI: http://nivo.dev7studios.com
Skin Type: flexible
Description: The default skin for the Nivo Slider.
Version: 1.0
Author: Gilbert Pellegrom
Author URI: http://dev7studios.com
*/
.default .nivoSlider {
    position:relative;
    background:#fff url(loading.gif) no-repeat 50% 50%;
    margin-bottom:50px;
    -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
    -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
    box-shadow: 0px 1px 5px 0px #4a4a4a;
}
.default .nivoSlider img {
    position:absolute;
    top:0px;
    left:0px;
    display:none;
}
.default .nivoSlider a {
    border:0;
    display:block;
}
.default .nivo-controlNav {
    position:absolute;
    left:70px;
    bottom:25px;
    margin-left:-40px; /* Tweak this to center bullets */
    z-index:300;
}
.default .nivo-controlNav a {
    display:block;
    width:22px;
    height:22px;
    background:url(bullets.png) no-repeat;
    text-indent:-9999px;
    border:0;
    margin-right:1px;
    float:left;
}
.default .nivo-controlNav a.active {
    background-position:0 -22px;
}
.default .nivo-directionNav a {
    display:block;
    width:30px;
    height:30px;
    background:url(arrows.png) no-repeat;
    text-indent:-9999px;
    border:0;
}
.default a.nivo-nextNav {
    background-position:-30px 0;
    right:15px;
}
.default a.nivo-prevNav {
    left:15px;
}
.default .nivo-caption {
    font-family: Helvetica, Arial, sans-serif;
}
.default .nivo-caption a {
    color:#fff;
    border-bottom:1px dotted #fff;
}
.default .nivo-caption a:hover {
    color:#fff;
}