Search…

X3 Photo Gallery Support Forums

Search…
 
rocksteady
Topic Author
Posts: 1
Joined: 08 Dec 2009, 09:42

Remove Picture Count in Main Folders

08 Dec 2009, 09:54

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!
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13998
Joined: 30 Sep 2006, 03:37

14 Dec 2009, 06:23

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;
}
Last edited by mjau-mjau on 05 Jan 2010, 23:35, edited 1 time in total.
 
User avatar
Christopher
Experienced
Posts: 213
Joined: 30 Sep 2006, 18:58

30 Dec 2009, 07:50

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
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13998
Joined: 30 Sep 2006, 03:37

05 Jan 2010, 23:34

oopsydaisy - I had the wrong class. The correct one is:
Code
.mainmenu_amount {
	display: none;
}
 
User avatar
Christopher
Experienced
Posts: 213
Joined: 30 Sep 2006, 18:58

06 Jan 2010, 04:48

Sorry,

But isn't that the same exact code?

Christopher
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13998
Joined: 30 Sep 2006, 03:37

13 Jan 2010, 09:30

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;
}