Keyword
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.

Prev/next buttons in Joomla 1.5

  • MP Media
  • MP Media's Avatar Topic Author
  • Offline
  • New Member
More
16 years 8 months ago - 16 years 8 months ago #13273 by MP Media
Prev/next buttons in Joomla 1.5 was created by MP Media
Hi

In Joomla 1.5 I am trying to get the prev/next buttons to appear all the time, rather than when hovering. Have been able to do in Joomla 1.015 using the fix here forum.joomlaworks.net/index.php?topic=669.0 but doesn't work in 1.5.

Anyone know how?
Thanks

Please Log in or Create an account to join the conversation.

More
14 years 11 months ago #13274 by Mark Voelkl
Replied by Mark Voelkl on topic Re: Prev/next buttons in Joomla 1.5
It's an old topic - but perhaps somebody want also to know this:

In Joomla 1.5 open this file:
/plugins/content/jw_sigpro/popup_engines/jquery_slimbox/css/slimbox2.css

old Code (starting from 33):
#lbPrevLink, #lbNextLink {
	display: block;
	position: absolute;
	top: 0;
	width: 50%;
	outline: none;
}

#lbPrevLink {
	left: 0;
}

#lbPrevLink:hover {
	background: transparent url(prevlabel.gif) no-repeat 0 15%;
}

#lbNextLink {
	right: 0;
}

#lbNextLink:hover {
	background: transparent url(nextlabel.gif) no-repeat 100% 15%;
}

change it to this:
#lbPrevLink, #lbNextLink {
	display: block;
	position: absolute;
	top: 0;
	width: 50%;
	outline: none;
}

#lbPrevLink {
	left: 0;
	background: transparent url(prevlabel.gif) no-repeat 0 15%;
}

#lbPrevLink:hover {
	background: transparent url(prevlabel.gif) no-repeat 0 15%;
}

#lbNextLink {
	right: 0;
	background: transparent url(nextlabel.gif) no-repeat 100% 15%;
}

#lbNextLink:hover {
	background: transparent url(nextlabel.gif) no-repeat 100% 15%;
}

It works for me :)

Best regards
Mark

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum