It's all about the answers!

Ask a question

RTC 3.0.1 Home icon customization ?


Ashwini Kumar Gangele (1144) | asked Oct 21 '11, 1:47 a.m.
Can some one help me to figure out, how to customize RTC 3.0.1 "HOME" icon & I want to remove "Build" & Source Control" from CCM.

Thanks!
Ashwini

2 answers



permanent link
Oliver Vinn (261) | answered Oct 21 '11, 5:13 a.m.
Can some one help me to figure out, how to customize RTC 3.0.1 "HOME" icon & I want to remove "Build" & Source Control" from CCM.

Thanks!
Ashwini



You can upload a theme for the CCM application to customise this. E.g. https://localhost:9443/ccm/admin#action=com.ibm.team.repository.admin.configureTheming

You can then include a CSS rule in the theme to hide the menu item (case given is source code menu).

#jazz_ui_MenuPopup_4 {

visibility: hidden;
width: 0px;
margin: 0px;
padding: 0px;
}

permanent link
Ashwini Kumar Gangele (1144) | answered Oct 23 '11, 9:46 p.m.
Can some one help me to figure out, how to customize RTC 3.0.1 "HOME" icon & I want to remove "Build" & Source Control" from CCM.

Thanks!
Ashwini



You can upload a theme for the CCM application to customise this. E.g. https://localhost:9443/ccm/admin#action=com.ibm.team.repository.admin.configureTheming

You can then include a CSS rule in the theme to hide the menu item (case given is source code menu).

#jazz_ui_MenuPopup_4 {

visibility: hidden;
width: 0px;
margin: 0px;
padding: 0px;
}


Thanks for the response Ovinn!

I created CSS file and uploaded in the RTC, but menu option is still appearing. I used below mention code in CSS file.

<style>
jazz_ui_MenuPopup_4 {
visibility: hidden;
width: 0px;
margin: 0px;
padding: 0px;
}
</style>

Please suggest me, if mistake in above code.

Your answer


Register or to post your answer.


Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.