How to remove concrete logo from dashboard?
Permalink
I want to remove concrete logo compleatly from dashboard. This small one in top left corner. I check many css and i'm able only change logo on UI but not on dashboard... Any Ideas??
the one located in /concrete/images/logo_menu.png?
I know how to change imige file i did it. I set up new dimesions in css file 'ccm.ui.css' and everything is fine but only on UI. In dashboard my logo image is 49 x 49 pixel and i dont know how to change... If i can change width will be graeat, but how...
its hardcoded in concrete/themes/core/dashboard.php
you just need replace the image and then clear the cache.
replacement best works with any FTP app.
don't forget the name the file to "logo_menu.png"
location is: concrete/images/logo_menu.png
replacement best works with any FTP app.
don't forget the name the file to "logo_menu.png"
location is: concrete/images/logo_menu.png
I went into main.css and changed display from inline to none. (In my case it was under #page #header #logo p{ display:none;...} )
It is possible in Ver 5.5. Refer the link. :-)
http://www.concrete5.org/documentation/how-tos/developers/white-lab...
http://www.concrete5.org/documentation/how-tos/developers/white-lab...
To change C5 logo when you logged in you have to change function getToolbarLogoSRC() (works from 5.5.x)
in
concrete->helpers->concrete
OR updates->'version'->concrete->helpers->concrete
file: interface.php
exp. add your avatar :) (before return)
in
concrete->helpers->concrete
OR updates->'version'->concrete->helpers->concrete
file: interface.php
exp. add your avatar :) (before return)
$u = new User(); if ($u->isRegistered()) { $userName = $u->getUserName(); $ui = UserInfo::getByUserName($userName); if ($ui->hasAvatar() == true) { $src = BASE_URL.DIR_REL.'/files/avatars/'.$ui->getUserID().'.jpg'; $alt = $userName; } }
I have replaced the dashboard logo-menu.png on 3 other sites with no problem whatsoever, but I doesn't seem to work on my own sitehttp://www.getthebigidea.co.uk
Does anyone have any ideas why not and how I can fix it please?
I have saved the image (overwriting the C5 logo) in: concrete/images/logo_menu.png but the dashboard is still showing the old C5 logo. Have cleared the cache, so can't understand this.
Does anyone have any ideas why not and how I can fix it please?
I have saved the image (overwriting the C5 logo) in: concrete/images/logo_menu.png but the dashboard is still showing the old C5 logo. Have cleared the cache, so can't understand this.
You can put this 2 lines in your /config/site.php
The first one change the logo, the second one change the alt name of the logo.
More information about white labelling :
http://www.concrete5.org/documentation/how-tos/developers/white-lab...
The first one change the logo, the second one change the alt name of the logo.
More information about white labelling :
http://www.concrete5.org/documentation/how-tos/developers/white-lab...
Thank you @nebuleu, will try that, but one quick question please.
Should "...your/server/address/logo_icon.png" be ".../logo-menu.png" and not "_icon"?????
Should "...your/server/address/logo_icon.png" be ".../logo-menu.png" and not "_icon"?????
The filename can be anything you want in that case, it's simply the URL where you put the logo.