Hi TanTecoda,
about the height of boxes you can change:
https://www.phoca.cz/documents/2-phoca-g ... e-joomla-3
Option > Categories Views and/or Category View > Category Box Space: Enlarge category box height (in px)
Regarding colors etc. via CSS at the end of template.css:
Code: Select all
.pg-csv-box {
width:150px !important;
height:150px !important;
background-color:blue;
}
above width: just optional (as it's hardcoded, if you want to change the width also)
background-color: an idea .... and/or in addition:
Code: Select all
.pg-csv-name {
text-align:center; }
It's not so easy without given URL, so:
Code: Select all
.pg-csv-box {
-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;
border:1px solid #e8e8e8; }
Kind regards, Christine