From contentslider.css (change in red):
Code:
.contentslide{
border: 10px white;
border-bottom-width: 6px;
padding: 8px;
width: 400px;
height: 450px;
}
You may wish to use a different value but, 450 seemed to allow enough room for things.
Also, doing it this way:
Code:
.contentslide{
border: 10px white;
border-bottom-width: 6px;
padding: 8px;
width: 400px;
height: 6px;
margin-top:20px;
}
.contentslide .contentdiv{
display: none;
}
.pagination{
width: 416px; /*Width of pagination DIV. To equal that of Content Slider's width, take into account the later's left/right paddings!*/
text-align: center;
background-color: #FFFFFF;
border: 10px solid white;
border-width: 0 10px; /*Left/ right border width of pagination DIV.*/
padding: 0 0 4px 0;
margin-top:-45px;
}
* html .pagination{ /*Simplified box model hack to get IE5 to display width equal to that of Content Slider's*/
width: 400px; /*IE5 width*/
w\idth: 416px; /*IE6 width*/
}
.pagination a{
padding: 0 5px;
text-decoration: none;
color: #2e6ab1;
background-color: white;
}
.pagination a:hover, .pagination a.selected{
color: #000080;
background-color: #E0E7FE;
}
Looked really good to me in the Firefox browser but, should be checked in other browsers before being used for your page.
Bookmarks