Page 1 of 1

Overlib border in 2.6.2

Posted: 13 Jan 2010, 18:17
by Ronny
Hi,

I have updated to Phoca Gallery 2.6.2 on my test server. For the gallery the overlib effect is enabled to show only the picture description. In 2.6.0 (and before) the description box had a grey line for the picture title and below it a white area for the picture description, with an very small border around it (approx. 1 pixel). Now, with 2.6.2, that border is much wider (what's not looking that good), and I can't change this anywhere in the parameters. I can only change the border color, e. g. to transparent - but then the background of the picture title in the overlib box is also set to that color what makes it nearly unreadable. Is there any way out?


Thanks and regards,
Ronny

PS: have also updated my main page so the effect is visible there also.

Re: Overlib border in 2.6.2

Posted: 17 Jan 2010, 11:08
by Ronny
Tested it again on a test machine with a new, clean installation - only Joomla 1.5.15 and Phoca Gallery 2.6.2, using default template rhuk_milkyway - the same thing's happening there.

regards,
Ronny

Re: Overlib border in 2.6.2

Posted: 19 Jan 2010, 18:35
by Jan
Hi, yes the padding was added as there is a new feauture. You can change it in your CSS, see:
components\com_phocagallery\assets\phocagallery.css

at the bottom change FROM:

Code: Select all

.bgPhocaClass {
	padding:10px;
	/*border:1px solid #d2d2d2;*/
}
TO:

Code: Select all

.bgPhocaClass {
	padding:0px;
	border:1px solid #d2d2d2;
}
Jan

Re: Overlib border in 2.6.2

Posted: 20 Jan 2010, 08:41
by Ronny
Great, thanks Jan, it's working!

Regards,
Ronny

Re: Overlib border in 2.6.2

Posted: 20 Jan 2010, 14:33
by Jan
Great to hear it. Jan