Hi there
I just launched my new site, www.offi.is and it is mainly based on Phoca gallery. I chose Slimbox as the detail view mode. Everything works fine exept when viewed in Firefox 4.0.1. If I browse the detail view by clicking "Next" or "Previous" it tends to cut the images in half, display only half the image, unless I have the mouse over. If I browse the detail view by using the arrows on the keyboard, everything is normal.
Is this a configuration problem or ...? All help would be highly appreciated!
I did search through the forum for this problem, but came out empty.
Best regards
Offi
Detail view: Half images in Firefox 4.0.1
- Jan
- Phoca Hero

- Posts: 49190
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Detail view: Half images in Firefox 4.0.1
Hi, did you test it with standard template?
https://www.phoca.cz/documents/50-phoca/ ... al-advices (3)
Jan
https://www.phoca.cz/documents/50-phoca/ ... al-advices (3)
Jan
If you find Phoca extensions useful, please support the project
-
pitu
- Phoca Member

- Posts: 13
- Joined: 01 Oct 2010, 21:29
- Location: Slovakia
Re: Detail view: Half images in Firefox 4.0.1
Hi,
problem is on your /templates/beez_20/css/personal.css on row 43
- a:focus overide focus for #lbPrevLink and #lbNextLink (there are not defined) in components/com_phocagallery/assets/js/slimbox/css/slimbox.css
Insert next code to file components/com_phocagallery/assets/js/slimbox/css/slimbox.css or to file /templates/beez_20/css/personal.css
problem is on your /templates/beez_20/css/personal.css on row 43
Code: Select all
a:hover, a:active, a:focus {
background: none repeat scroll 0 0 #CCCCCC;
color: #FCFCFC;
}Insert next code to file components/com_phocagallery/assets/js/slimbox/css/slimbox.css or to file /templates/beez_20/css/personal.css
Code: Select all
#lbPrevLink:focus {
background: url("prevlabel.gif") no-repeat scroll 0 15% transparent;
}
#lbNextLink:focus {
background: url("nextlabel.gif") no-repeat scroll 100% 15% transparent;
}-
offi
- Phoca Newbie

- Posts: 2
- Joined: 08 Jun 2011, 13:22
Re: Detail view: Half images in Firefox 4.0.1
Thanks a million, guys. Adding the code into the slimbox.css file did the trick. But now the "Next" flip refuses to disappear however. Some css conflict?
-
pitu
- Phoca Member

- Posts: 13
- Joined: 01 Oct 2010, 21:29
- Location: Slovakia
Re: Detail view: Half images in Firefox 4.0.1
Hi,
try the next solution (sorry for previous solution - developed and tested only on Firefox Firebug - and my english) :
Code posted abovereplace with
and code in file com_phocagallery/assets/js/slimbox/css/slimbox.cssreplace with
...nice photos...
try the next solution (sorry for previous solution - developed and tested only on Firefox Firebug - and my english) :
Code posted above
Code: Select all
#lbPrevLink:focus {
background: url("prevlabel.gif") no-repeat scroll 0 15% transparent;
}
#lbNextLink:focus {
background: url("nextlabel.gif") no-repeat scroll 100% 15% transparent;
}Code: Select all
#lbPrevLink:focus {
background: none transparent;
}
#lbNextLink:focus {
background: none transparent;
}Code: Select all
#lbPrevLink:hover {
background: url("prevlabel.gif") no-repeat scroll 0 15% transparent;
}
#lbNextLink:hover {
background: url("nextlabel.gif") no-repeat scroll 100% 15% transparent;
}Code: Select all
#lbPrevLink:hover {
background: url("prevlabel.gif") no-repeat scroll 0 15% transparent !important;
}
#lbNextLink:hover {
background: url("nextlabel.gif") no-repeat scroll 100% 15% transparent !important;
}