Page 1 of 1
Amount in menu doesn't disappear after changing css
Posted: 19 May 2011, 15:49
by robgommans
Hi,
I'm trying to get rid of the amount (number of photos in the folder) from menu items. I've added the tag visibility: hidden to the correct css-item, but it still appears! Any idea somebody? Thanks!
Rob
.mainmenu_amount {
color: #3D3D3D;
visibility: hidden;
}
Re: Amount in menu doesn't disappear after changing css
Posted: 20 May 2011, 06:13
by Martin
robgommans wrote:I'm trying to get rid of the amount (number of photos in the folder) from menu items.
In 'menu.mainmenu.folderdesription.items' uncheck 'filecount'
Re: Amount in menu doesn't disappear after changing css
Posted: 20 May 2011, 08:18
by robgommans
Thanks for your reply.
You see, that's the thing...the setting is disabled. I tried to disable the entire folderdescription, but that stil doesn't work. I don't want a folderdescription and I also want the filecount in the menuitem removed. Is there another setting for that?
Best,
Rob
Re: Amount in menu doesn't disappear after changing css
Posted: 20 May 2011, 08:41
by mjau-mjau
I assume you are using Imagevue X2.6.4 ... In Imagevue X2.7 (currently beta), there is a specific setting for this:
settings -> menu.mainmenu.items
For now, you can use the CSS, but flash textfields cant not read "visibility" style like you are using. Instead, you must use "display":
.mainmenu_amount {
display: none;
}
Add this to your theme CSS, empty cache, and see it works wonders ...
Re: Amount in menu doesn't disappear after changing css
Posted: 20 May 2011, 09:30
by robgommans
Thanks, it works! It does work wonders!

Now going to try to figure out why some of the bullets in my "Over deze website" page appear in link-color, while others are in white as planned...

Re: Amount in menu doesn't disappear after changing css
Posted: 20 May 2011, 10:21
by Martin
mabro wrote:In 'menu.mainmenu.folderdesription.items' uncheck 'filecount'
Ah, I got it... the above setting disables the filecount in the folderdesription (as it says it does) and
settings -> menu.mainmenu.items disables the file count in the menuitem...
And all this only from v2.7 onwards...