Customized navigation arrows not displaying in cycle 2
Hey guys i am using cycle 2 for a project of mine and basically all i wanted to do was add a custom arrow for the left and right navigation. I saw this example in the documentation
HERE
(see the first example).
Now i tried it by myself , i have the following HTML:
- .cycle-prev, .cycle-next {
- position: absolute;
- top: 0;
- width: 30%;
- opacity: 0;
- filter: alpha(opacity=0);
- z-index: 800;
- height: 100%;
- cursor: pointer;
- }
-
- .cycle-next {
- right: 0;
- background: url(http://malsup.github.com/images/right.png) 50% 50% no-repeat;
- }
-
- .cycle-prev {
- left: 0;
- background: url(http://malsup.github.com/images/left.png) 50% 50% no-repeat;
- }
But somehow the arrows just won't show up, the area around the slider is clickable and you can navigate left and right that the only problem i have is that. My simple Demo can be see
HERE
. Now my question is why are my arrows not showing ? why are the arrows not displaying at all ?