Login Page - How to remove Toolbar

Permalink
I have found that if I add "display: none" to the css for ccm-toolbar in the css file associated with the Login page that this will turn it off. But, I can't find where the css file is located to edit it. Can someone direct me?

I'm using a password protected page and I don't need or want the Toolbar (with logo) showing up across the top of the Login page.

Thanks in advance!
Steve

Pixelfixer
 
Pixelfixer replied on at Permalink Best Answer Reply
Pixelfixer
I just figured this one out (after a few hours of trial and error). So to save someone else the time, here's what I did to remove the Toolbar from the top of the Login page.

Log in as "admin" to edit the Attributes of the Login page. Go to the Sitemap, click on "Include System Pages in Sitemap" checkbox to see the Login page. Then click on the Login page and select Attributes from the pop-up menu. Next, click on "Header Extra Content" to enable that attribute for this page. Then, in the new attribute box, add the following Style code entry:

<style>
#ccm-toolbar {
     display: none;
}
</style>


Save your changes and test it out.
This should do it for you.