Perspective Forbidden Access Custom Message

Is there a way to write your own custom message for the forbidden access screen?

Bad news:
No we don't allow for customization of the text of that page, unlike other Terminal State pages.

Good news:
Perspective is all HTML and CSS and Smoke and Mirrors and Magic, so you can do whatever you want if you get really clever.

Use the stylesheet.css resource available in 8.1.22 and newer.

div.forbidden-page p {
	visibility: hidden;
}

div.forbidden-page p:after {
	content: "A custom message.";
	visibility: visible;
	display: block;
}

Screenshot 2023-12-28 at 8.18.25 AM

1 Like

Perfect, that will work. Thank you!

1 Like