Page 1 of 1

Phoca Gallery Plugin

Posted: 20 Oct 2013, 20:55
by jxm
Hey guys,

need some urgent help.

So, we are using Joomla 3.0 with custom made template. We recently decided to integrate Phoca Gallery plugin into articles with PG Plugin with PG Button. Now, here's the problem. Everything works except the thumbnails in the article are not displayed as we would like them and usually I'd go and Inspect the element with Chrome and check what elements I have to adjust in certain css files. In this particular case I only get info about attributes, that are coded inside page's html, but can't get any info where to find css files or settings to change. Sort of drives me crazy because I've been googling for hours a couldn't find any solution to it.

Here's the link to the website:
http://okfuzinar.si/index.php/novice/28 ... -fuzinarja

Thanks!

Re: Phoca Gallery Plugin

Posted: 21 Oct 2013, 13:58
by jxm
Forgot to write down - I'm looking for an option to change the defaults. I know you can change the style when using the PC Button, but it's very inconvenient since I'm the only person working on this website who knows CSS and this sort of stuff but it's not me who's putting articles on the website or uploading photos etc.

Re: Phoca Gallery Plugin

Posted: 21 Oct 2013, 19:31
by Jan
Hi, then you need to customize the php code:

plugins/phocagallery/ ...

or the Phoca Gallery component css - see CSS which is loaded by Phoca Gallery - you can do it in administration of Phoca Gallery.

Jan

Re: Phoca Gallery Plugin

Posted: 26 Oct 2013, 11:39
by jxm
Thanks for your reply,

so, I tried locating the code in PHP. If I'm not mistaken, this is the code applying to the border of thumbnails.

Code: Select all

$border_color= $paramsC->get( 'border_color', '#e8e8e8');
$border_color_hover 	= $paramsC->get( 'border_color_hover', '#b36b00');
I want to change the width of the border to 0, how do I do that?

Thanks

Re: Phoca Gallery Plugin

Posted: 30 Oct 2013, 12:51
by Jan
Hi, set the color as "transparent" ... For Phoca Gallery, this can be set in Options (border color: transparent)

Jan

Re: Phoca Gallery Plugin

Posted: 30 Oct 2013, 21:04
by jxm
Hm, so I set the code like this:

Code: Select all

$border_color= $paramsC->get( 'border_color', 'transparent');
$border_color_hover    = $paramsC->get( 'border_color_hover', 'transparent');
Is this how it should be? If it is, it's unfortunately not working.

Now I decided to use Mosaic option and works fine for me. This is how it looks like now :)
http://okfuzinar.si/index.php/novice/28 ... -fuzinarja

Re: Phoca Gallery Plugin

Posted: 02 Nov 2013, 18:28
by Jan
Ok