Alfresco Share enter page customization

cancel
Showing results for 
Search instead for 
Did you mean: 
user_js
Member II

Alfresco Share enter page customization

Jump to solution

Hi, everybody! How is it possible to change logos and other customization on Alfresco Share enter page? In what folder (inside alfresco) can I find this data (images and css files) corresponding to Alfresco Share enter page?

1 Solution

Accepted Solutions
kalpesh_c2
Senior Member

Re: Alfresco Share enter page customization

Jump to solution

Hi Alex,

There are different folder exist for different theme.Each theme have it's own css and images.

You can find that css and images from <alfresco_home>tomcat\webapps\share\themes folder.

Ex.

presentation.css

.theme-company-logo
{
height: 42px;
width: 320px;
background: transparent url(images/alfresco.svg) 50% 0 no-repeat;
background-size: 156px 42px;
}

alfresco logo file path is defined here.

Thanks,

Kalpesh

Contcentric

View solution in original post

3 Replies
kalpesh_c2
Senior Member

Re: Alfresco Share enter page customization

Jump to solution

Hi Alex,

There are different folder exist for different theme.Each theme have it's own css and images.

You can find that css and images from <alfresco_home>tomcat\webapps\share\themes folder.

Ex.

presentation.css

.theme-company-logo
{
height: 42px;
width: 320px;
background: transparent url(images/alfresco.svg) 50% 0 no-repeat;
background-size: 156px 42px;
}

alfresco logo file path is defined here.

Thanks,

Kalpesh

Contcentric

user_js
Member II

Re: Alfresco Share enter page customization

Jump to solution

Thank you. I've found by default lightTheme is used in this page.