Page 1 of 1

hide number of files in the category list

Posted: 19 Apr 2020, 21:18
by tintilld
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.

Re: hide number of files in the category list

Posted: 19 Apr 2020, 22:48
by christine
Hi,

try this code:

Code: Select all

.pd-title small {
display:none;  
}
Into your e.g. custom.css. Depends which template you are using.

Kind regards
Christine

Re: hide number of files in the category list

Posted: 19 Apr 2020, 23:55
by tintilld
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.

Re: hide number of files in the category list

Posted: 20 Apr 2020, 11:16
by christine
Hi Tintilld,

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; 
 }
Maybe do I create the custom.css file before?
For Protostar it is: user.css (to create before).

Kind regards
Christine

Re: hide number of files in the category list

Posted: 20 Apr 2020, 12:57
by tintilld
many many thanks Christine !!!

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;  
}
A big thanks.

Kind Regards

Tintilld