Remove top bar (with logo) from just the Login page...

Permalink
Is it possible to remove the Top bar from just the Login page? Which file do I need to edit? I have been looking at the login.php file in the singles_pages directory, but cannot see where I can remove the header. Thanks

Cyberdave
 
tallacman replied on at Permalink Reply
tallacman
Looks like:

#ccm-logo {
   display: none;
}


Will do it. Just drop it in your css file.
cannonf700 replied on at Permalink Reply
cannonf700
cyberdave,
you could use a custom template for the login page. This would use your theme's 'view.php' file as the backdrop for the login page. To do this you need ftp(s) access and go to:
root/config/site_theme_paths.php

I think there's also a tutorial in the documentation section.
ProudWorks replied on at Permalink Reply
The following code only takes away the logo.
#ccm-logo {
     display: none;
}


To take away the whole bar, insert the following into /concrete/single_pages/login.php:

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