Hi,
I Use Phoca Download with Joomla to give a library of files on my website.
I use the display "List of Files (Category View).
I can see :
- Category A (0)
- Category B (1)
- Category C (0)
But I don't want to display the number (0) or (1).
How can I Do?
Thanks by advance for your help
Tintilld.
hide number of files in the category list
-
- Phoca Newbie
- Posts: 6
- Joined: 19 Apr 2020, 21:15
-
- Phoca Hero
- Posts: 2819
- Joined: 28 Nov 2010, 17:20
Re: hide number of files in the category list
Hi,
try this code:
Into your e.g. custom.css. Depends which template you are using.
Kind regards
Christine
try this code:
Code: Select all
.pd-title small {
display:none;
}
Kind regards
Christine
-
- Phoca Newbie
- Posts: 6
- Joined: 19 Apr 2020, 21:15
Re: hide number of files in the category list
Many thanks Christine for your quickly help but I couldn't resolve my problem.
I didn't find à custom.css file in my Joomla.
I use the Protostar template
then I tried add the code à the end of the /templates/protostar/template.css file but I have the same result. :(
Maybe do I create the custom.css file before?
Sorry for my level but i'm a beginner in Joomla and web developpment.
Tintilld.
I didn't find à custom.css file in my Joomla.
I use the Protostar template
then I tried add the code à the end of the /templates/protostar/template.css file but I have the same result. :(
Maybe do I create the custom.css file before?
Sorry for my level but i'm a beginner in Joomla and web developpment.
Tintilld.
-
- Phoca Hero
- Posts: 2819
- Joined: 28 Nov 2010, 17:20
Re: hide number of files in the category list
Hi Tintilld,
either above Code or try with this (depends which view). To see your URL live, would be easier.
Kind regards
Christine
either above Code or try with this (depends which view). To see your URL live, would be easier.
Code: Select all
.pd-subcategory small {
display:none;
}
For Protostar it is: user.css (to create before).Maybe do I create the custom.css file before?
Kind regards
Christine
-
- Phoca Newbie
- Posts: 6
- Joined: 19 Apr 2020, 21:15
Re: hide number of files in the category list
many many thanks Christine !!!
I create user.css and add the code bellow and it's OK
A big thanks.
Kind Regards
Tintilld
I create user.css and add the code bellow and it's OK
Code: Select all
.pd-subcategory small {
display:none;
}
.pd-title small {
display:none;
}
Kind Regards
Tintilld