Page 1 of 2

Remove icon/title and box

Posted: 11 Jul 2023, 10:03
by Dave-OLW
Version 4.5.3 PHoca Gallery
How do I remove or change position of the icon/title and shaded box at the bottom of the images.
Docs state use Control panel Parameter button, but there is no Parameter button shown in the control panel.
https://imgur.com/QpOeRl3

Re: Remove icon/title and box

Posted: 11 Jul 2023, 10:47
by christine
Hi,

see different between the themes: https://www.phoca.cz/news
Theme Simple = (default theme) in your case. Btw: Current Version is now: 4.5.4
Dave-OLW wrote: 11 Jul 2023, 10:03 How do I remove or change position of the icon/title and shaded box at the bottom of the images.
Download: Theme Standard: https://www.phoca.cz/download/66-phoca- ... ery-themes
In backend de-active under Style: theme_simple.css. Activate: theme_standard.css

Removing title could be done via CSS (in your user.css or custom.css):

Code: Select all

.ph-si-category {
display: none;     
}
.pg-item-box-title a {
display: none !important;    
}
Kind regards
Christine

Re: Remove icon/title and box

Posted: 11 Jul 2023, 11:54
by Dave-OLW
Thanks for reply
Added above code but icon/title and box still there.

Re: Remove icon/title and box

Posted: 11 Jul 2023, 12:08
by christine
Hi,

Did you change from theme_simple to theme_standard?

Try this:

Code: Select all

.pg-item-box-title, .pg-category-box-title {
display: none;  
}
More info could be given with a live URL.

Kind regards
Christine

Re: Remove icon/title and box

Posted: 11 Jul 2023, 12:32
by Dave-OLW
Thanks
How do I change from theme_simple to theme_standard?

Re: Remove icon/title and box

Posted: 11 Jul 2023, 12:41
by christine
Dave-OLW wrote: 11 Jul 2023, 12:32 Thanks
How do I change from theme_simple to theme_standard?
See first reply above:
Download: Theme Standard: https://www.phoca.cz/download/66-phoca- ... -component
In backend de-active under Style: theme_simple.css. Activate: theme_standard.css
Install above The Theme Standard via installation P. Routine

Kind regards
Christine

Re: Remove icon/title and box

Posted: 11 Jul 2023, 13:58
by Dave-OLW
Cannot see where to activate/de-activate, under Control panel-Styles it shows both theme_simple.css and theme_standard.css as Published - ticked.
Live URL
https://newportbaptistchurch.org.uk/index.php/gallery

Re: Remove icon/title and box

Posted: 11 Jul 2023, 15:48
by christine
Hi,
Dave-OLW wrote: 11 Jul 2023, 13:58 Cannot see where to activate/de-activate, under Control panel-Styles it shows both theme_simple.css and theme_standard.css as Published - ticked.
see here please:
Image

Check in backend under: Options. Example:
Category View: Display Download Icon: Hide

By the way: My previous (or other) codes - as desribed, should be inserted into you custom.css of your template.

Kind regards
Christine

Re: Remove icon/title and box

Posted: 11 Jul 2023, 16:47
by Dave-OLW
Thanks
Have got them moved off of images.
How to remove them, cannot find Category View: Display Download Icon: Hide
Live URL
https://newportbaptistchurch.org.uk/index.php/gallery

Re: Remove icon/title and box

Posted: 11 Jul 2023, 16:58
by christine
OK, then use this code:

Code: Select all

.pg-item-box-icons-box svg.ph-si {
display: none;    
}
Kind regards
Christine