Page 1 of 1

Remove Picture Count in Main Folders

Posted: 08 Dec 2009, 09:54
by rocksteady
Hi,

When displayed my "Gallery Menu" shows the name of all the main folders. If one clicks on each folder in order to access sub-folders with the pics, the count of files contained in this sub-folder always appears:

AFRICA
- Children of Burundi (10)
- A week-end in Niamey (10)
- Incredible Tunisa (10)

Is there a way to remove the count (10) and keep the name of the sub-folder only?

Thanks!

Posted: 14 Dec 2009, 06:23
by mjau-mjau
Go to admin -> themes -> edit your theme -> edit theme stylesheet. Set:
.mainmenu_node {
display: none;
}

Edit: Sorry, the above is wrong - Use this:
Code
.mainmenu_amount {
	display: none;
}

Posted: 30 Dec 2009, 07:50
by Christopher
Happy New Years all.

I was also interested in this feature today and gave it a try, but alas, the number count remains. Used your precise code without any extras.

http://www.christophergrant.net

Thanks for looking!
Christopher

Posted: 05 Jan 2010, 23:34
by mjau-mjau
oopsydaisy - I had the wrong class. The correct one is:
Code
.mainmenu_amount {
	display: none;
}

Posted: 06 Jan 2010, 04:48
by Christopher
Sorry,

But isn't that the same exact code?

Christopher

Posted: 13 Jan 2010, 09:30
by mjau-mjau
Christopher wrote:Sorry,

But isn't that the same exact code?

Christopher
No I changed it! See my posts above ->
[wrong]:
.mainmenu_node {
display: none;
}
:
.mainmenu_amount {
display: none;
}