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??

 
Mnkras replied on at Permalink Reply
Mnkras
the one located in /concrete/images/logo_menu.png?
medioo replied on at Permalink Reply
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...
Mnkras replied on at Permalink Reply
Mnkras
its hardcoded in concrete/themes/core/dashboard.php
primewaydesign replied on at Permalink Reply
primewaydesign
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
TammyM replied on at Permalink Reply
TammyM
I went into main.css and changed display from inline to none. (In my case it was under #page #header #logo p{ display:none;...} )
chaitanya replied on at Permalink Reply
It is possible in Ver 5.5. Refer the link. :-)

http://www.concrete5.org/documentation/how-tos/developers/white-lab...
onemhz replied on at Permalink Reply
onemhz
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)
$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;
  }
 }
thebigideasman replied on at Permalink Reply
thebigideasman
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.
nebuleu replied on at Permalink Reply
nebuleu
You can put this 2 lines in your /config/site.php
define('WHITE_LABEL_LOGO_SRC', '//your/server/address/logo_icon.png');
define('WHITE_LABEL_APP_NAME', 'YOUR CMS');

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...
thebigideasman replied on at Permalink Reply
thebigideasman
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"?????
nebuleu replied on at Permalink Reply
nebuleu
The filename can be anything you want in that case, it's simply the URL where you put the logo.