- Posts: 12
COMMUNITY FORUM
- Forum
- Commercial Joomla Extensions & Templates
- Simple Image Gallery PRO
- Making the prev/next buttons permanent with Lytebox
Please note that official support for commercial extensions & templates is provided in the Subscriber Help Desk.
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.
Making the prev/next buttons permanent with Lytebox
- MP Media
- Topic Author
- Offline
- New Member
Less
More
16 years 7 months ago #14690
by MP Media
Making the prev/next buttons permanent with Lytebox was created by MP Media
Hi
Does anyone have a hack to force the prev/next buttons to appear all the time when using the Lytebox template? (there is one for slimbox)
Thanks
Does anyone have a hack to force the prev/next buttons to appear all the time when using the Lytebox template? (there is one for slimbox)
Thanks
Please Log in or Create an account to join the conversation.
- kayut
- Offline
- New Member
Less
More
- Posts: 10
15 years 9 months ago #14691
by kayut
Replied by kayut on topic Re: Making the prev/next buttons permanent with Lytebox
Hi,
I have exactly the same question.
Can somebody help us??
Thanks
I have exactly the same question.
Can somebody help us??
Thanks
Please Log in or Create an account to join the conversation.
- Yiota
- Visitor
15 years 9 months ago - 15 years 9 months ago #14692
by Yiota
Replied by Yiota on topic Re: Making the prev/next buttons permanent with Lytebox
It's all a CSS matter.
You have to open the lytebox.css, find the #prevLink, #nextLink.
Then you have to take the background images given to the hover state and simply place it to the no hover state.
Note that you have to erase the previous backround that has been given to the #prevLink, #nextLink, as shown below:
#prevLink, #nextLink {background:transparent url(../blank.gif) no-repeat;/* Trick IE into showing hover */}
That was it. You now have permanent previous/next buttons with every box :)
Read the following topic if you have any questions
forum.joomlaworks.net/index.php?topic=669.0
You have to open the lytebox.css, find the #prevLink, #nextLink.
Then you have to take the background images given to the hover state and simply place it to the no hover state.
Note that you have to erase the previous backround that has been given to the #prevLink, #nextLink, as shown below:
#prevLink, #nextLink {background:transparent url(../blank.gif) no-repeat;/* Trick IE into showing hover */}
That was it. You now have permanent previous/next buttons with every box :)
Read the following topic if you have any questions
forum.joomlaworks.net/index.php?topic=669.0
Please Log in or Create an account to join the conversation.
- kayut
- Offline
- New Member
Less
More
- Posts: 10
15 years 9 months ago #14693
by kayut
Replied by kayut on topic Re: Making the prev/next buttons permanent with Lytebox
Thank you very much indeed!!
Please Log in or Create an account to join the conversation.
- mooihoek
- Offline
- New Member
Less
More
- Posts: 5
14 years 9 months ago #14694
by mooihoek
Replied by mooihoek on topic Re: Making the prev/next buttons permanent with Lytebox
im struggling with this, read all the posts, I want to be able to do two things.
1. Make the next prev buttons perm
2. Move the buttons down below the label text.
This is my code
#lbPrev { width: 49%; height: 100%; background: transparent url(images/blank.gif) no-repeat; display: block; left: 0; float: left; }
#lbPrev.grey:hover, #lbPrev.grey:visited:hover { background: url(images/prev_grey.gif) left 15% no-repeat; }
#lbPrev.red:hover, #lbPrev.red:visited:hover { background: url(images/prev_red.gif) left 15% no-repeat; }
#lbPrev.green:hover, #lbPrev.green:visited:hover { background: url(images/prev_green.gif) left 15% no-repeat; }
#lbPrev.blue:hover, #lbPrev.blue:visited:hover { background: url(images/prev_blue.gif) left 15% no-repeat; }
#lbPrev.gold:hover, #lbPrev.gold:visited:hover { background: url(images/prev_gold.gif) left 15% no-repeat; }
#lbNext { width: 49%; height: 100%; background: transparent url(images/blank.gif) no-repeat; display: block; right: 0; float: right; }
#lbNext.grey:hover, #lbNext.grey:visited:hover { background: url(images/next_grey.gif) right 15% no-repeat; }
#lbNext.red:hover, #lbNext.red:visited:hover { background: url(images/next_red.gif) right 15% no-repeat; }
#lbNext.green:hover, #lbNext.green:visited:hover { background: url(images/next_green.gif) right 15% no-repeat; }
#lbNext.blue:hover, #lbNext.blue:visited:hover { background: url(images/next_blue.gif) right 15% no-repeat; }
#lbNext.gold:hover, #lbNext.gold:visited:hover { background: url(images/next_gold.gif) right 15% no-repeat; }
1. Make the next prev buttons perm
2. Move the buttons down below the label text.
This is my code
#lbPrev { width: 49%; height: 100%; background: transparent url(images/blank.gif) no-repeat; display: block; left: 0; float: left; }
#lbPrev.grey:hover, #lbPrev.grey:visited:hover { background: url(images/prev_grey.gif) left 15% no-repeat; }
#lbPrev.red:hover, #lbPrev.red:visited:hover { background: url(images/prev_red.gif) left 15% no-repeat; }
#lbPrev.green:hover, #lbPrev.green:visited:hover { background: url(images/prev_green.gif) left 15% no-repeat; }
#lbPrev.blue:hover, #lbPrev.blue:visited:hover { background: url(images/prev_blue.gif) left 15% no-repeat; }
#lbPrev.gold:hover, #lbPrev.gold:visited:hover { background: url(images/prev_gold.gif) left 15% no-repeat; }
#lbNext { width: 49%; height: 100%; background: transparent url(images/blank.gif) no-repeat; display: block; right: 0; float: right; }
#lbNext.grey:hover, #lbNext.grey:visited:hover { background: url(images/next_grey.gif) right 15% no-repeat; }
#lbNext.red:hover, #lbNext.red:visited:hover { background: url(images/next_red.gif) right 15% no-repeat; }
#lbNext.green:hover, #lbNext.green:visited:hover { background: url(images/next_green.gif) right 15% no-repeat; }
#lbNext.blue:hover, #lbNext.blue:visited:hover { background: url(images/next_blue.gif) right 15% no-repeat; }
#lbNext.gold:hover, #lbNext.gold:visited:hover { background: url(images/next_gold.gif) right 15% no-repeat; }
Please Log in or Create an account to join the conversation.
- mooihoek
- Offline
- New Member
Less
More
- Posts: 5
14 years 9 months ago #14695
by mooihoek
Replied by mooihoek on topic Re: Making the prev/next buttons permanent with Lytebox
Anyone ?
Please Log in or Create an account to join the conversation.
- Forum
- Commercial Joomla Extensions & Templates
- Simple Image Gallery PRO
- Making the prev/next buttons permanent with Lytebox