How can I make the style of the main category page look like the other category pages?
Main page:
http://joomla.actonegallery.com/index.p ... Itemid=135
Category page:
http://joomla.actonegallery.com/index.p ... Itemid=135
I like the transparent (not white) box and the shadow effect.
Larene
How can I change the style of the main category page?
-
larenespitler
- Phoca Newbie

- Posts: 6
- Joined: 22 Sep 2011, 01:53
-
larenespitler
- Phoca Newbie

- Posts: 6
- Joined: 22 Sep 2011, 01:53
Re: How can I change the style of the main category page?
/home/act1gallery/www/joomla.actonegallery.com/media/com_phocagallery/css/custom/default.css
change from
/* Phoca Gallery Categories View */
.pg-csv-box {
float: left;
padding: 10px;
margin: 5px;
background: #fff;
-webkit-box-shadow:1px 1px 2px 1px rgba(120, 120, 120, 0.5), inset 0px 0px 7px 7px rgba(240, 240, 240, 0.2);
box-shadow:1px 1px 2px 1px rgba(120, 120, 120, 0.5), inset 0px 0px 7px 7px rgba(240, 240, 240, 0.2);
-webkit-border-radius: 2px;
border-radius: 2px;
}
to
/* Phoca Gallery Categories View */
.pg-csv-box {
float: left;
padding: 10px;
margin: 5px;
/* background: #fff; */
-webkit-box-shadow:1px 1px 2px 1px rgba(120, 120, 120, 0.5), inset 0px 0px 7px 7px rgba(240, 240, 240, 0.2);
box-shadow:1px 1px 2px 1px rgba(120, 120, 120, 0.5), inset 0px 0px 7px 7px rgba(240, 240, 240, 0.2);
-webkit-border-radius: 2px;
border-radius: 2px;
}
change from
/* Phoca Gallery Categories View */
.pg-csv-box {
float: left;
padding: 10px;
margin: 5px;
background: #fff;
-webkit-box-shadow:1px 1px 2px 1px rgba(120, 120, 120, 0.5), inset 0px 0px 7px 7px rgba(240, 240, 240, 0.2);
box-shadow:1px 1px 2px 1px rgba(120, 120, 120, 0.5), inset 0px 0px 7px 7px rgba(240, 240, 240, 0.2);
-webkit-border-radius: 2px;
border-radius: 2px;
}
to
/* Phoca Gallery Categories View */
.pg-csv-box {
float: left;
padding: 10px;
margin: 5px;
/* background: #fff; */
-webkit-box-shadow:1px 1px 2px 1px rgba(120, 120, 120, 0.5), inset 0px 0px 7px 7px rgba(240, 240, 240, 0.2);
box-shadow:1px 1px 2px 1px rgba(120, 120, 120, 0.5), inset 0px 0px 7px 7px rgba(240, 240, 240, 0.2);
-webkit-border-radius: 2px;
border-radius: 2px;
}
- Benno
- Phoca Hero

- Posts: 9965
- Joined: 04 Dec 2008, 11:58
- Location: Germany
- Contact:
Re: How can I change the style of the main category page?
Kind regards,
Benno