I would like add the customer logo in the Webtop and in the Administrator. I'm using Documentum 6.5.
Could you help me?
Thanks
Are you wanting to add a logo to the login screen or in the header at the top of webtop or DA?
If you want to add a logo to the header, you can create a custom css that extends the ".webtopTitlebarBackground" style:
.webtopTitlebarBackground
{
BACKGROUND-COLOR: #036497;
BACKGROUND-IMAGE: url('../images/titlebar/your_custom_logo.jpg');
background-repeat: no-repeat;
}
where "your_custom_logo.jpg" is the logo deployed in the custom folder of your webapp (e.g. DA or Webtop).
If you want to add a logo to the login page, you can extend the login component and take the existing login.jsp to point it to your logo.
Finally, you could simply replace the Documentum logo with yours, however, you're not really extending the webapp at this point (as you should via WDK), so I wouldn't recommend it as a long term solution.
Terence