Project

General

Profile

Howto add a logo to your Redmine banner » History » Version 8

Xiao Wang, 2011-01-22 16:59
add notes for location of redmine

1 6 Mischa The Evil
h1. HowTo add a logo to your Redmine banner
2
3
You can very easily add a logo to your Redmine banner by modifying your base.rhtml file.
4
Big thanks to "Chris Miller":/users/758 for showing me how to accomplish this :)
5
6
Note: This has been tested using the Squeejee Theme and the Classic Theme.
7 8 Xiao Wang
Note2: if you used apache2 passenger module to install redmine,the location of redmine should be @/usr/share/redmine@ instead of @/opt/redmine
8 1 Aaron Johnson
9 8 Xiao Wang
*Edit your base.rhtml file*@
10 6 Mischa The Evil
11
Example:<pre>
12
nano /opt/redmine/app/views/layouts/base.rhtml</pre>
13
14
Find this line:<pre>
15
    <h1><%= page_header_title %></h1></pre>
16
17
And change it to:<pre>
18
     <!--<h1><%= page_header_title %></h1>--></pre>
19
20
Add this line directly below:<pre>
21 7 Xiao Wang
     <img src="/redmine/images/logo.png" style="top-margin: 15px; left-margin: 15px;"/></pre>
22 6 Mischa The Evil
23
Now it should look like this:<pre>
24
    </div>
25
26
     <!--<h1><%= page_header_title %></h1>-->
27
     <img src="/images/logo.png" style="top-margin: 15px; left-margin: 15px;"/>
28
29
    <% if display_main_menu?(@project) %></pre>
30
31
*Upload your logo*
32
33
Example using the scp command:<pre>
34
scp logo.png root@example.com:/opt/redmine/public/images</pre>
35
36
You probably should chown the uploaded logo:<pre>
37
chown redmine:redmine /opt/redmine/public/images/logo.png</pre>
38
39
*Restart your web server*
40
41
Examples:<pre>/etc/init.d/apache2 restart</pre><pre>/etc/init.d/httpd restart</pre><pre>/etc/init.d/nginx restart</pre>