richardbarrett
Junior Member
Posts: 2
Registered: 7/25/2005
Location: Brisbane, Australia
Member Is Offline
|
| posted on 7/25/2005 at 12:48 AM |
|
|
Button Images not hiding
Hi,
I'm using the scroller to create a company news ticker. Even though I've set the 'hide_buttons' : true, they still appear over the ticker.
I could change the images to 1x1px transparent gifs but this seems a little clunky to me and I would like to be able to resolve this properly.
Regards
Richard
|
|
|
rock
Moderator
Posts: 687
Registered: 4/15/2003
Member Is Offline
|
| posted on 8/29/2005 at 09:23 AM |
|
|
If you set 'hide_buttons' : true control's images will apprear on mouseover and disappear on mouseout; otherwise images always are
visible. If you want them completely hide set images position beyond control's borders. E.g.:
/* for on-demand mode only:
control (arrow) to scroll items backward - DIV
use to position the control */
.ArrowUp {
top: -205px;
left: -260px;
height: 16px;
width: 16px;
}
/* for on-demand mode only:
control (arrow) to scroll items forward - DIV
use to position the control */
.ArrowDn {
top: -205px;
left: -280px;
height: 16px;
width: 16px;
}
|
|
|