Project

General

Profile

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

Revision 36 (user 42, 2017-06-20 11:02) → Revision 37/39 (Toshi MARUYAMA, 2017-06-20 16:23)

h1. HowTo add a logo to your Redmine banner 

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

 Note: This has been tested using the Squeejee Theme and the Classic Theme. 
 Note2: if you used apache2 passenger module to install redmine,the location of redmine should be @/usr/share/redmine@ instead of @/opt/redmine@ 

 h2. Edit your @base.html.erb@ file 

 Example: Example:<pre> 
 <pre> 
 # nano /opt/redmine/app/views/layouts/base.html.erb 
 </pre> /opt/redmine/app/views/layouts/base.html.erb</pre> 

 Find this line: 
 <pre><code class="erb"> line:<pre> 
     <h1><%= page_header_title %></h1> 
 </code></pre> %></h1></pre> 

 Add this line directly above: 
 <pre><code class="erb"> above:<pre> 
      <img src="<%= Redmine::Utils.relative_url_root %>/images/logo.png" style="top-margin: 15px; left-margin: 15px;"/></code></pre> 15px;"/></pre> 

 The ruby statement @<%= Redmine::Utils.relative_url_root %>@ will produce the relative URI for your redmine installation. 


 Now it should look like this: 
 <pre><code class="erb"> this:<pre> 
     </div> 

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

     <% if display_main_menu?(@project) %> 
 </code></pre> %></pre> 

 h2. Upload your logo 

 Example using the scp command: command:<pre> 
 <pre> 
 # scp logo.png root@example.com:/opt/redmine/public/images 
 </pre> root@example.com:/opt/redmine/public/images</pre> 

 You probably should chown the uploaded logo: logo:<pre> 
 <pre> 
 # chown redmine:redmine /opt/redmine/public/images/logo.png 
 </pre> /opt/redmine/public/images/logo.png</pre> 

 h2. Restart your web server 

 Examples: 
 <pre> 
 # /etc/init.d/apache2 restart 
 # /etc/init.d/httpd restart 
 # /etc/init.d/nginx restart 
 </pre> Examples:<pre>/etc/init.d/apache2 restart</pre><pre>/etc/init.d/httpd restart</pre><pre>/etc/init.d/nginx restart</pre>