Change the Color of Your FOLIO Banner
Thanks to Jen Bolmarcich for these instructions and CSS code.
First, copy the 9 lines of CSS code from this snippet to your clipboard.
After you install the extension, go to https://fivecolleges-test.folio.ebsco.com and login.
When you select the extension icon (either in your browser toolbar or via the extension menu button (it looks like a puzzle piece)), there will be an option that says "Write style for: fivecolleges.folio.... Click that option.
The page that opens will say "Add Style" with the FOLIO test URL. In the main panel (where the text says /* Insert code here... */), select all the text that is present (lines 9-11) and delete it. Then paste in the code you copied.
Click save. (left menu, just underneath the Add Style header and url text box). There is a checkbox just below the URL labelled "Enabled". If that is unchecked, then check it.
Click over to your FOLIO Test tab, and refresh the page. Your header should now be a lovely mauve.
If you want a different color, you can change it in your style by selecting the tiny colored box that appears next to the rgba numbers. A color picker modal will open and you can choose whatever color you like (of the 16 million+ avail in RGB).
CSS code
@-moz-document url-prefix("https://fivecolleges-test.folio.ebsco.com") {
/*FOLIO TEST*/
[class*=navRoot] {
background: rgba(176, 135, 183, 10);
/*background: linear-gradient(90deg,rgba(176, 135, 183, 0.8) 0%, rgba(176, 135, 183, 1) 25%, rgba(0, 135, 183, 0.5) 50%, rgba(176, 0, 183, 1) 75%, rgba(176, 135, 0, 1) 100%);*/
font-weight: 800;
text-shadow: 2px 2px 3px rgba(25, 96, 164, 1);
}
}