Need a Joomla 2.5 slider with this functionality please - Joomla! Forum - community, help and support
hi, know chance of slider extension capable of placing next/prev buttons on edge of browser on http://www.risermedia.com/
thank you
thank you
if don't mind doing little code tweaking, dj image slider handle this.
the trick setting left , right buttons absolute positioning. here's code risermedia.com using on left button:
and here's right button:
the trick here position: absolute, , "right" , "left" pixel amounts left , right buttons, respectively. forces these buttons "stick" left , right hand sides of page.
if applied similar code dj image slider left , right buttons, effect. replace dj image slider's button graphics create "half-button-on-the-side-of-the-page" too.
you can download dj image slider here: http://extensions.joomla.org/extensions ... show/13119
good luck!
the trick setting left , right buttons absolute positioning. here's code risermedia.com using on left button:
code: select all
#arw_prev {
left: -4px;
position: absolute;
top: 420px;
z-index: 9999;and here's right button:
code: select all
#arw_next {
position: absolute;
right: -4px;
top: 420px;
z-index: 9999;
}the trick here position: absolute, , "right" , "left" pixel amounts left , right buttons, respectively. forces these buttons "stick" left , right hand sides of page.
if applied similar code dj image slider left , right buttons, effect. replace dj image slider's button graphics create "half-button-on-the-side-of-the-page" too.
you can download dj image slider here: http://extensions.joomla.org/extensions ... show/13119
good luck!
Comments
Post a Comment