How integrate lightbox in CMS?
Re: How integrate lightbox in CMS?
What are the permissions for that folder and it's parent folder?...
			
			
									
						
										
						Re: How integrate lightbox in CMS?
lightbox 755
modules 0
			
			
									
						
										
						modules 0
Re: How integrate lightbox in CMS?
module folder needs the same permissions...
			
			
									
						
										
						Re: How integrate lightbox in CMS?
I haveDr. CSS wrote: That only has to be there if you don't have the base href in the head...
Code: Select all
<base href="http://www.letit.se/" />It could have something to do with mod_rewrite
Re: How integrate lightbox in CMS?
Edit the Lightbox/css/lightbox.css
[/quote]
Should be
			
			
									
						
										
						Code: Select all
#prevLink:hover, #prevLink:visited:hover { background: url(modules/LightBox/images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(modules/LightBox/images/nextlabel.gif) right 15% no-repeat; }Should be
Code: Select all
#prevLink:hover, #prevLink:visited:hover { background: url(../images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(../images/nextlabel.gif) right 15% no-repeat; }Re: How integrate lightbox in CMS?
Last reply is correct because the style sheet is coming out of a folder in the module...
Myself I would copy it out of there and make a new style sheet in the admin for it and leave it as is and it should work, the same thing was happening to it in Album...
			
			
									
						
										
						Myself I would copy it out of there and make a new style sheet in the admin for it and leave it as is and it should work, the same thing was happening to it in Album...


