Remove icon/title and box
-
- Phoca Newbie
- Posts: 8
- Joined: 11 Jul 2023, 09:29
Remove icon/title and box
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
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
Tags:
-
- Phoca Hero
- Posts: 2872
- Joined: 28 Nov 2010, 17:20
Re: Remove icon/title and box
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
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):
Kind regards
Christine
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
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;
}
Christine
-
- Phoca Newbie
- Posts: 8
- Joined: 11 Jul 2023, 09:29
Re: Remove icon/title and box
Thanks for reply
Added above code but icon/title and box still there.
Added above code but icon/title and box still there.
-
- Phoca Hero
- Posts: 2872
- Joined: 28 Nov 2010, 17:20
Re: Remove icon/title and box
Hi,
Did you change from theme_simple to theme_standard?
Try this:
More info could be given with a live URL.
Kind regards
Christine
Did you change from theme_simple to theme_standard?
Try this:
Code: Select all
.pg-item-box-title, .pg-category-box-title {
display: none;
}
Kind regards
Christine
-
- Phoca Newbie
- Posts: 8
- Joined: 11 Jul 2023, 09:29
Re: Remove icon/title and box
Thanks
How do I change from theme_simple to theme_standard?
How do I change from theme_simple to theme_standard?
-
- Phoca Hero
- Posts: 2872
- Joined: 28 Nov 2010, 17:20
Re: Remove icon/title and box
See first reply above:
Install above The Theme Standard via installation P. RoutineDownload: Theme Standard: https://www.phoca.cz/download/66-phoca- ... -component
In backend de-active under Style: theme_simple.css. Activate: theme_standard.css
Kind regards
Christine
-
- Phoca Newbie
- Posts: 8
- Joined: 11 Jul 2023, 09:29
Re: Remove icon/title and box
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
Live URL
https://newportbaptistchurch.org.uk/index.php/gallery
-
- Phoca Hero
- Posts: 2872
- Joined: 28 Nov 2010, 17:20
Re: Remove icon/title and box
Hi,

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
see here please:

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
-
- Phoca Newbie
- Posts: 8
- Joined: 11 Jul 2023, 09:29
Re: Remove icon/title and box
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
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
-
- Phoca Hero
- Posts: 2872
- Joined: 28 Nov 2010, 17:20
Re: Remove icon/title and box
OK, then use this code:
Kind regards
Christine
Code: Select all
.pg-item-box-icons-box svg.ph-si {
display: none;
}
Christine