Edit Help link
Permalink
I would like to remove this "Help" link top-right side in concrete 5.("ヘルプ" means "Help" in Japanese.)
Do you know how to remove this link?
If you know, please help me.
toshi
Do you know how to remove this link?
If you know, please help me.
toshi
Dear Steve,
Thank you for your early post!
When I try your method, the problem was solved.
Thanks a lot!
Sincerely,
Toshi
Thank you for your early post!
When I try your method, the problem was solved.
Thanks a lot!
Sincerely,
Toshi
Any easy way to remove this from the dashboard as well? Or change the link URL?
Nevermind. I figured it out.
Anyone else who's curious open up /concrete/css/ccm.ui.css and find
"ul#ccm-system-nav #ccm-nav-help"
and add in the beginning like tallacman said above.
Also open /concrete/css/ccm.dashboard.css and find "ul#ccm-system-nav #ccm-nav-dashboard-help" and add the same to the beginning of the css attributes.
Anyone else who's curious open up /concrete/css/ccm.ui.css and find
"ul#ccm-system-nav #ccm-nav-help"
and add
display: none;
Also open /concrete/css/ccm.dashboard.css and find "ul#ccm-system-nav #ccm-nav-dashboard-help" and add the same to the beginning of the css attributes.
#ccm-nav-help {
display: none!important ;
}
Steve