2023-08-09, 07:51 PM
(This post was last modified: 2023-08-09, 09:11 PM by SimplifyAndAddCoffee. Edited 1 time in total.)
I found a thread with info on how to do this a while back on reddit but it is gone now or I can't find it.
I want to inject prominent text at the top of the home/library pages e.g. "The Server will be Offline Aug 12-14 for maintenance" etc to notify users of upcoming changes or expected outages.
How can I accomplish this in the most simple manner (using the Custom CSS Code field in General settings)
EDIT: I figured it out, so here's the answer for anyone else searching for it:
This creates a yellow banner below "Home" and "Favorites" on the main library pages, with black text for your message. Edit text and colors to your liking.
I want to inject prominent text at the top of the home/library pages e.g. "The Server will be Offline Aug 12-14 for maintenance" etc to notify users of upcoming changes or expected outages.
How can I accomplish this in the most simple manner (using the Custom CSS Code field in General settings)
EDIT: I figured it out, so here's the answer for anyone else searching for it:
Code:
.skinHeader::after {
content: "NOTICE: This is your Notice Text. Thank You For Noticing.";
display: block;
position: relative;
background-color: gold;
color: #000;
text-align: center;
padding: 10px 0;
font-weight: bold;
}
This creates a yellow banner below "Home" and "Favorites" on the main library pages, with black text for your message. Edit text and colors to your liking.