ruby on rails - How to add an image to the redmine top menu? -


i want put image on top menu of redmine plugin index page.

in init.rb

menu :top_menu, :my_link, {:controller => 'my_controller', :action => 'my_action'}, :caption => "my title" link image fit in syntax?

you'll have css.

if create menu with:

menu :top_menu, :my_link, {:controller => 'my_controller', :action => 'my_action'}, :caption => "my title"  

it created class 'my-link'.

all have define on css:

#top-menu a.my-link {        padding-left: 20px;   background-image: url(../images/my-link.png);  } 

Comments

Popular posts from this blog

How do you change vbulletin's home page to the forums instead of the default (CMS or Activity Stream)? -

c++ - Troubles when compiling phash program -