Project

General

Profile

Actions

Howto add a logo to your Redmine banner » History » Revision 6

« Previous | Revision 6/39 (diff) | Next »
Mischa The Evil, 2010-11-23 10:54
Rollback to version 6 to squash some spam.


HowTo add a logo to your Redmine banner

You can very easily add a logo to your Redmine banner by modifying your base.rhtml file.
Big thanks to Chris Miller for showing me how to accomplish this :)

Note: This has been tested using the Squeejee Theme and the Classic Theme.

Edit your base.rhtml file

Example:

nano /opt/redmine/app/views/layouts/base.rhtml

Find this line:

    <h1><%= page_header_title %></h1>

And change it to:

     <!--<h1><%= page_header_title %></h1>-->

Add this line directly below:

     <img src="/images/logo.png" style="top-margin: 15px; left-margin: 15px;"/>

Now it should look like this:

    </div>

     <!--<h1><%= page_header_title %></h1>-->
     <img src="/images/logo.png" style="top-margin: 15px; left-margin: 15px;"/>

    <% if display_main_menu?(@project) %>

Upload your logo

Example using the scp command:

scp logo.png root@example.com:/opt/redmine/public/images

You probably should chown the uploaded logo:

chown redmine:redmine /opt/redmine/public/images/logo.png

Restart your web server

Examples:

/etc/init.d/apache2 restart
/etc/init.d/httpd restart
/etc/init.d/nginx restart

Updated by Mischa The Evil over 13 years ago · 6 revisions