/* root element for scrollable */ .vertical { /* required settings */ position:relative; overflow:hidden; /* vertical scrollers have typically larger height than width */ height: 370px; width: 530px; } /* root element for scrollable items */ .items { position:relative; /* this time we have very large space for height */ height:20000em; margin: 0px; width:530px; } /* the action buttons above the scrollable */ #actions { width:530px; text-align:left; } #actions a { font-size:18px; cursor:pointer; font-family:trebuchet MS; padding-top:10px; } #actions a:hover { } .disabled { visibility:hidden; } .prevPage { background-image:url(./vertical.css/$FILE/arrow-sx.png); background-repeat:no-repeat; background-position:center left; display:block; height:30px; padding-left:40px; } .nextPage { background-image:url(./vertical.css/$FILE/arrow-dx.png); background-repeat:no-repeat; background-position:center right; display:block; height:30px; padding-right:40px; }