customizing redmine top header
Added by reham kh about 11 years ago
Hello,
I was trying to customize the top header so I can delete or edit the links(taps): home - my page - projects - help
Replies (10)
RE: customizing redmine top header
-
Added by Martin Denizet (redmine.org team member) about 11 years ago
You can hide them with CSS using the Redmine Custom CSS plugin
And then in the plugin configuration input:
#top-menu a.help{ display:none; }
Cheers,
RE: customizing redmine top header
-
Added by reham kh about 11 years ago
Thank you so much! but I'm using redmine for windows so how can I install the plugin?
RE: customizing redmine top header
-
Added by Martin Denizet (redmine.org team member) about 11 years ago
- Download the latest version
- Extract it in the plugins directory at the root of your Redmine installation
- Rename the extracted folder as
redmine_custom_css
- Restart your Redmine instance
Cheers,
RE: customizing redmine top header
-
Added by reham kh about 11 years ago
I'm really thankful! but where can I find plugin configuration input?
RE: customizing redmine top header
-
Added by Martin Denizet (redmine.org team member) about 11 years ago
In Administration / Plugins:
In the list, find the Redmine Custom CSS plugin and click on the Configuration link on the same line.
RE: customizing redmine top header
-
Added by reham kh about 11 years ago
Thank you so much ! It works !
Is there any possible way to reach to html tags ?
RE: customizing redmine top header
-
Added by Martin Denizet (redmine.org team member) about 11 years ago
Glad you got it working!
reham kh wrote:
Is there any possible way to reach to html tags ?
Can you detail what you wish to archive please?
RE: customizing redmine top header
-
Added by reham kh about 11 years ago
I want to edit help link so it would lead to some added user guide documents.
RE: customizing redmine top header
-
Added by Martin Denizet (redmine.org team member) about 11 years ago
Lucky you, I did a plugin especially for you: http://www.redmine.org/plugins/redmine_custom_js
Install it and in the configuration input something like:
//I'm writting custom JS to modify Redmine, Yay! $( document ).ready(function() { //Get help from Google $("#top-menu a.help").attr("href", "http://www.google.com/"); });
Replace the URL with the one you wish.
Cheers,
RE: customizing redmine top header
-
Added by reham kh about 11 years ago
God bless you ! I'm really thankful <3