Hello,
I would always show my navigation arrows.
It doesn't works very well for me.
The left arrow appears, it's ok.
But the right arrow appears in the middle when I'm out of the picture,
then, when I enter on the picture, the right arrow move to the right side.
Could somebody help me please to fix the right arrow on the side ?
I have attached a screen capture.
Here is my css :
#fancybox-left, #fancybox-right {
position: absolute;
bottom: 0px;
height: 100%;
width: 35%;
cursor: pointer;
outline: none;
background-image: url('blank.gif');
z-index: 1102;
display: block;
}
#fancybox-left {
left: 0px;
}
#fancybox-right {
right: 0px;
}
#fancybox-left-ico, #fancybox-right-ico {
position: absolute;
top: 50%;
left: 20px;
right: 20px;
width: 30px;
height: 30px;
margin-top: -15px;
cursor: pointer;
z-index: 1102;
display: block;
}
#fancybox-left-ico {
left: 20px;
background: transparent url('fancy_nav_left.png')no-repeat;
}
#fancybox-right-ico {
right: 20px;
background: transparent url('fancy_nav_right.png')no-repeat;
}
#fancybox-left:hover, #fancybox-right:hover {
/*visibility: visible;*/ /* IE6 */
}
#fancybox-left:hover span {
/*left: 20px;*/
}
#fancybox-right:hover span {
left: auto;
/*right: 20px;*/
}
Thanks