Page 1 of 1

Cannot find where to change CSS

Posted: 04 Dec 2014, 10:33
by spinfx
Hi

I cannot find where to change the CSS to make the background of this category list transparent http://alltracks4wd.firstbitegroup.com/ ... to-gallery like this page http://alltracks4wd.firstbitegroup.com/ ... ry/1-trips and to make the rollover on that last page into a solid gray rather than white.

If you can point me to the location of the correct file and line numbers (if possible) I should be able to do the changes myself.

Many thanks in advance, David :)

Re: Cannot find where to change CSS

Posted: 04 Dec 2014, 14:49
by Benno
Hi;
http://alltracks4wd.firstbitegroup.com/ ... efault.css
Line 261

Code: Select all

.pg-field {
    background: none repeat scroll 0 0 #fff;
    border-radius: 2px;
    box-shadow: 1px 1px 2px 1px rgba(120, 120, 120, 0.5), 0 0 7px 7px rgba(240, 240, 240, 0.2) inset;
    margin: 10px;
    padding: 10px;
}
Delete or comment out this line:
background: none repeat scroll 0 0 #fff;

Kind regards,
Benno

Re: Cannot find where to change CSS

Posted: 12 Dec 2014, 16:09
by steph38
Hello,
I would like to add another issue for me. Where can I modify the color of the "control - edit" frame (I don't how to say) displayed to add a new set of photos. When the user is allowed, at the bottom of the page, the user can add a category, can upload photos. But the panels appear in white and my template theme is dark. then, how to change the colors of the "edit" frame part please?

looking at https://www.phoca.cz/documents/2-phoca-g ... r_of_panes
I have modified these fields in components/phocagallery/styles's css edit. Putting the background parameter values to #000000, but nothing happens.

div.current {background: #000000;}
dl.tabs dt {background: #000000;}
dl.tabs dt.open {background: #000000;

The User Control panels appear blank and not black.

Re: Cannot find where to change CSS

Posted: 13 Dec 2014, 20:35
by Benno
Hi,
I checked it with the Joomla! Standard Template Beez3:
/templates/beez3/css/personal.css
Line 311

Code: Select all

.tabcontent, div.current {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #ddd;
    color: #000;
}
Change: background: none repeat scroll 0 0 #fff;
with a color you like.

Kind regards,
Benno

Re: Cannot find where to change CSS

Posted: 25 Dec 2014, 23:23
by steph38
Thank you for the answer,
However, my template is Prismatic-for-joomal-3x and the Template inventor told me that
the color of such "control panels" is overwritten by Phoca Gallery.
Do you have a method to search where the current color of a panel is set?
Thank :shock: you

Re: Cannot find where to change CSS

Posted: 25 Dec 2014, 23:56
by Benno
Hi,
Do you have a method to search where the current color of a panel is set?
Yes, if you use firefox install and use the add-on firebug.

Kind regards,
Benno

Re: Cannot find where to change CSS

Posted: 29 Dec 2014, 13:32
by steph38
Thank you,
I will try that.

Re: Cannot find where to change CSS

Posted: 29 Dec 2014, 21:28
by Benno
Ok.

Kind regards,
Benno