I picked up a great tip from @mrumery yesterday. Our institution wanted me to add a custom message to the new user registration page in Catalog to encourage Baylor-affiliates to use their campus email address when registering. His JavaScript solution was so simple but so helpful, I wanted to share it with the Catalog community.
You want to add this to a document ready function to wait for the DOM to load on the page.
$( document ).ready(function() {
$("div.registration-summary.text-center").append("<br>This is what some text can look like.</br>");
});
Using his suggested code snippet, this is what our first-time enrollment page looks like now after making it look the way our campus leadership wanted:
![ScreenClip [13].png ScreenClip [13].png](/t5/image/serverpage/image-id/21104i22E82A97053B7EED/image-size/large?v=v2&px=999)
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.