FAQ
How can I make Alma's "Apply Changes" button more visible when updating library hours?
When updating your library's hours in Alma, it's easy to miss the crucial "Apply Changes" link. Unlike the prominent "Save" button (which only saves your draft), the "Apply Changes" link looks like just another text link on the page. Missing this step means your hour changes won't actually take effect!
A simple browser extension can make the "Apply Changes" button bright red and impossible to miss.
Before | After |
---|---|
![]() |
![]() |
The "Apply Changes" link blends in with other links | The "Apply Changes" button is now bright red and prominent |
Here's how to set it up:
For Chrome and Firefox Users
- Install the Stylus Extension
- Chrome: Chrome Web Store > Extensions > Stylus
- Firefox: Firefox Add-ons > Extensions > Stylus
- Click "Add to Chrome" or "Add to Firefox"
- Create Your Custom Style
- Click the Stylus extension icon in your browser toolbar
- Choose "Write new style"
- Give it a name: "Alma: Calendar: Apply Changes"
- In the "Applies to" section, choose "URLs matching the regexp" and enter:
https://cuny-.*\.alma\.exlibrisgroup\.com/.*
- In the code area, paste this CSS:
#ADD_HIDERADIO_up_managementRecords_admstructureorganization_unitstabscalendar_managementgenerate_calendar, #ADD_HIDERADIO_up_managementRecords_admstructureorganization_unitstabscalendar_managementgenerate_calendar a { background-color: #ff0000 !important; color: #ffffff !important; font-weight: 800 !important; border: 0 !important; border-radius: 5px !important; }
- Click Save.
For Edge Users
Microsoft Edge can run Chrome extensions! Open the browser and click the actions menu icon (...) in the top-right corner. Select Extensions from the menu, then click Manage extensions in the left sidebar. Toggle the switch next to "Allow extensions from other stores" to turn it on and confirm by clicking Allow. Then follow the instructions above (For Chrome and Firefox Users)!
For Safari Users
- Install the Userscripts Extension
- Go to the Mac App Store and search for "Userscripts"
- Install the free Userscripts app
- Open Safari > Preferences > Extensions and enable "Userscripts"
- Give it permission for "All Websites" for the best experience
- Create Your Custom Script
- Click the Userscripts extension icon in Safari's toolbar
- Click the + button and choose New JS
- Important: Replace
xx
in the code below with your campus's 2-letter code (e.g.,hc
for Hunter,bc
for Brooklyn,qc
for Queens)
- Paste this code:
// ==UserScript== // @name Alma: Calendar: Apply Changes // @description Style the 'Apply Changes' button in the Alma calendar manager // @author Alevtina Verbovetskaya // @match https://cuny-xx.alma.exlibrisgroup.com/* // @grant none // ==/UserScript== (function() { 'use strict'; function addStyles() { if (document.getElementById('alma-calendar-styles')) { return; } const style = document.createElement('style'); style.id = 'alma-calendar-styles'; style.textContent = ` #ADD_HIDERADIO_up_managementRecords_admstructureorganization_unitstabscalendar_managementgenerate_calendar, #ADD_HIDERADIO_up_managementRecords_admstructureorganization_unitstabscalendar_managementgenerate_calendar a { background-color: #ff0000 !important; color: #ffffff !important; font-weight: 800 !important; border: 0 !important; border-radius: 5px !important; } `; document.head.appendChild(style); } addStyles(); if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', addStyles); } setTimeout(addStyles, 1000); setTimeout(addStyles, 3000); })();
- Click Save.
- If the "Apply Changes" link hasn't changed, try refreshing the website (CMD-R or CTRL-R).
Once installed, this extension will automatically make the "Apply Changes" button bright red with white text whenever you're working with library hours in Alma. You'll never miss it again!
Metadata
Alevtina Verbovetskaya
2025-09-05
95
Related Topics
Was this helpful? 0 0