Search…

X3 Photo Gallery Support Forums

Search…
 
robgommans
Topic Author
Posts: 3
Joined: 18 May 2011, 19:19

Amount in menu doesn't disappear after changing css

19 May 2011, 15:49

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;
}
 
User avatar
Martin
Experienced
Posts: 651
Joined: 30 Jan 2011, 23:24

Re: Amount in menu doesn't disappear after changing css

20 May 2011, 06:13

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'
 
robgommans
Topic Author
Posts: 3
Joined: 18 May 2011, 19:19

Re: Amount in menu doesn't disappear after changing css

20 May 2011, 08:18

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

Re: Amount in menu doesn't disappear after changing css

20 May 2011, 08:41

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":
Code
.mainmenu_amount {
display: none;
}
Add this to your theme CSS, empty cache, and see it works wonders ...
 
robgommans
Topic Author
Posts: 3
Joined: 18 May 2011, 19:19

Re: Amount in menu doesn't disappear after changing css

20 May 2011, 09:30

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... :)
 
User avatar
Martin
Experienced
Posts: 651
Joined: 30 Jan 2011, 23:24

Re: Amount in menu doesn't disappear after changing css

20 May 2011, 10:21

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...