Changing the logo
From www.sermyadmin.org
Interface customization
For its site layout SerMyAdmin uses a sitemesh framework, so it’s pretty simple to customize the look of SerMyAdmin to your taste. Sitemesh displays the pages based on a template that may be found at
/usr/local/apache-tomcat-6.0.16/webapps/serMyAdmin/WEB-INF/grails-app/views/layouts
There, you’ll find:
main.gsp notLoggedIn.gsp
To replace the SerMyAdmin logo with one of your own just put your logo on /usr/local/apache-tomcat-6.0.16/webapps/serMyAdmin/images, and edit the tag that points to the logo.png in the layout files.
Just as shown below:
<img src="${createLinkTo(dir:'images',file:'my_new_logo.png')}" alt="Grails" />

