cancel
Showing results for 
Search instead for 
Did you mean: 

Hiow to change LOGO on the login page

mimoun
Champ in-the-making
Champ in-the-making

Hi,

I want to replace the Alfresco logo that appears on the login page by a custom logo.

How do I proceed?

Thank you for your understanding
4 REPLIES 4

muralidharand
Star Contributor
Star Contributor
Hi,
Open 
 "C:\Alfresco42d\tomcat\webapps\share\themes\default\presentation.css" 
file and findout 
 "theme-company-logo" 
class.

.theme-company-logo
{
   height: 64px;
   width: 450px;
   background: transparent url(images/logo.png) no-repeat;
}

It is referring logo.png from images folder. You can change this css class and refer your image file. You've to do this for all the available themes like yello,green etc themes.
But, my suggestion is create your own theme and modify it as per your wish and don't change anything in the default themes.

http://docs.alfresco.com/4.0/index.jsp?topic=%2Fcom.alfresco.enterprise.doc%2Ftasks%2Fthemes-create....

Hi, you can do what muralidharand have said.

Or I think you may just replace a new logo image in the original place.

mimoun
Champ in-the-making
Champ in-the-making

Pmverma said :

Hi, you can do what muralidharand have said.

Or I think you may just replace a new logo image in the original place.


Which  place?

mimoun
Champ in-the-making
Champ in-the-making
Thanks Murali and pmverma!

It works.