Remove icon/title and box

General Forum
Dave-OLW
Phoca Newbie
Phoca Newbie
Posts: 8
Joined: 11 Jul 2023, 09:29

Remove icon/title and box

Post 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

Tags:
christine
Phoca Hero
Phoca Hero
Posts: 2737
Joined: 28 Nov 2010, 17:20

Re: Remove icon/title and box

Post 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
Dave-OLW
Phoca Newbie
Phoca Newbie
Posts: 8
Joined: 11 Jul 2023, 09:29

Re: Remove icon/title and box

Post by Dave-OLW »

Thanks for reply
Added above code but icon/title and box still there.
christine
Phoca Hero
Phoca Hero
Posts: 2737
Joined: 28 Nov 2010, 17:20

Re: Remove icon/title and box

Post 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
Dave-OLW
Phoca Newbie
Phoca Newbie
Posts: 8
Joined: 11 Jul 2023, 09:29

Re: Remove icon/title and box

Post by Dave-OLW »

Thanks
How do I change from theme_simple to theme_standard?
christine
Phoca Hero
Phoca Hero
Posts: 2737
Joined: 28 Nov 2010, 17:20

Re: Remove icon/title and box

Post 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
Dave-OLW
Phoca Newbie
Phoca Newbie
Posts: 8
Joined: 11 Jul 2023, 09:29

Re: Remove icon/title and box

Post 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
christine
Phoca Hero
Phoca Hero
Posts: 2737
Joined: 28 Nov 2010, 17:20

Re: Remove icon/title and box

Post 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
Dave-OLW
Phoca Newbie
Phoca Newbie
Posts: 8
Joined: 11 Jul 2023, 09:29

Re: Remove icon/title and box

Post 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
christine
Phoca Hero
Phoca Hero
Posts: 2737
Joined: 28 Nov 2010, 17:20

Re: Remove icon/title and box

Post by christine »

OK, then use this code:

Code: Select all

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