Closed (fixed)
Project:
Views Slideshow
Version:
7.x-3.x-dev
Component:
Documentation
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
22 Jul 2011 at 22:32 UTC
Updated:
6 Sep 2012 at 16:54 UTC
Jump to comment: Most recent file
Comments
Comment #1
sumerokr commentedHi man!
yes, its possible, just use css.
for ex.: use position: absolute for prev/next
Comment #2
thinguy commentedI'm better a Google'ing than I am at CSS so from piecing together various info here is my solution.
Open to any critiques or problems you see this may cause.
This is moving the bottom (previous/pause/next) text off the screen and replacing them with left/right arrows on the edges of my slideshow.
Thanks.
#views_slideshow_controls_text_previous_quote_header_block-block a:hover {
background-image: url(../images/previous-button.png);
height: 90px;
width: 60px;
position: absolute;
top:20px;
left: -10px;
z-index: 999;
white-space:nowrap;
text-indent: -9999px;
}
#views_slideshow_controls_text_previous_quote_header_block-block a {
background-image: url(../images/button-blank.png);
height: 90px;
width: 60px;
position: absolute;
top:20px;
left: -10px;
z-index: 999;
white-space:nowrap;
text-indent: -9999px;
}
#views_slideshow_controls_text_next_quote_header_block-block a:hover {
background-image: url(../images/next-button.png);
height: 90px;
width: 60px;
position: absolute;
top:20px;
left: 900px;
z-index: 999;
white-space:nowrap;
text-indent: -9999px;
}
#views_slideshow_controls_text_next_quote_header_block-block a {
background-image: url(../images/button-blank.png);
height: 90px;
width: 60px;
position: absolute;
top:20px;
left: 900px;
z-index: 999;
white-space:nowrap;
text-indent: -9999px;
}
#views_slideshow_controls_text_pause_quote_header_block-block a:hover {
/* Pause doesn't need a graphic since any hover of the image automatically pauses, so this just moves the "pause" out of the way */
/*background-image: url(../images/next-button.png);
height: 90px;
width: 60px;
top:20px;
left: 450px;
z-index: 999; */
position: absolute;
white-space:nowrap;
text-indent: -9999px;
}
#views_slideshow_controls_text_pause_quote_header_block-block a {
/*background-image: url(../images/button-blank.png);
height: 90px;
width: 60px;
top:20px;
left: 450px;
z-index: 999; */
position: absolute;
white-space:nowrap;
text-indent: -9999px;
}
Comment #3
redndahead commentedComment #5
klucid commentedI know this is an old thread, but I wanted to share my solution. It's a simplified version of thinguy's, but more importantly, it has a larger area for the user to hover (about half of the slideshow). So, if you were to hover over the entire right side of the slideshow, you would see the next arrow.
Also included my next/previous arrows.
Modify your pixels accordingly: