To make the image size different for each box - give the box an ID, and then modify the ID.
For each page it'd have a different ID depending on size, in the example above, this is the code:
Code:
<div class="slide" id="slide">
So in the CSS, I'd do:
Code:
#slide {
width: blah !important;
height: blah !important;
}
To give the text more padding, here:
Code:
div.slide div.info {
width: 100%;
background: #000;
color: #FFF;
opacity: .7;
font-family: arial;
font-size: 10pt;
min-height: 50px;
position: absolute;
padding-top: 10px;
}
Although I don't know how padding is going to work out - how ever many padding, add more to bottom: blah; (same with height)
Again, to modify the opacity, give the bar an ID and modify indivisually.
Bookmarks