You can customize the look of the Admin Module by creating your own CSS file. Create a file named "custom_admin_style.css" and place it in the study's graphics folder.
By including a custom CSS file, you can remove all "Sawtooth Software" branding from the Admin Module.
To remove our title and include your company's logo, include the following CSS:
#title_text
{
display: none;
}
#page_header
{
background:url('your_logo.gif') no-repeat center center;
height: 50px;
}