Change the position of the Navigational buttons
Set the Navigational buttons wherever you like!
Question:
How can I change the position of the navigational buttons in DMXzone Lightbox?
Answer:
If, for whatever reason, the positions of the Lightbox navigational buttons needs to be changed, this can be done real easy by changing some values in the Lightbox' CSS file.
Open the file style.css from the following folder /dmx/widgets/Lightbox/styles.
To move the Next and Previous button in a horzontal direction, edit these values:
#dmxBoxWrapper .prevbtn {
left : 0px !important;
}
#dmxBoxWrapper .nextbtn {
right : 0px !important;
}
left : 0px !important;
}
#dmxBoxWrapper .nextbtn {
right : 0px !important;
}
To move the Play button in a vertical direction change this value:
#dmxBoxWrapper .playbtn {
top : 100% !important;
}
top : 100% !important;
}
Note that you have to add !important to each of these parameters to be certain that the correct view will show.
Comments
Be the first to write a comment
You must me logged in to write a comment.