Table of Contents
Hiding menu items from the FotoWeb user interface
Table of Contents
Default menu items in the user interface can be removed by modifying the custom.css file located in C:\ProgramData\FotoWare\FotoWeb\Site Settings\<sitename>\CSS
Note: If you cannot find the above folder, no custom styling has yet been added to the site. In that case, see Branding the site to learn how to obtain and implement a custom CSS file.
Below is an overview of the various items that can be removed and the CSS required to do so.
Hiding the "Manage exports" menu item
/* Hiding "Manage exports" menu item */ .manage-exports-global { display: none !important; }
Hiding the "Create screen" menu item
/* Hiding "Create screen" menu item" */ .create-screen { display: none !important; }
Hiding the "Manage webhooks" menu item
/* Hiding "Manage webhooks" menu item" */ .js-webhooks-link { display: none !important; }
Hiding the "Install FotoWeb Desktop" menu item
/* Hiding "Install FotoWeb Desktop" menu item" */ .js-install-fwdt { display: none !important; }
Hiding the "Upgrade FotoWeb Desktop" menu item
/* Hiding "Upgrade FotoWeb Desktop" menu item" */ .js-upgrade-fwdt { display: none !important; }
Hiding the "Always display markers on thumbnails" menu item
/* Hiding "Always display Markers on thumbnails" menu item" */ .js-always-display-markers { display: none !important; }