function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
The_PhoenixThe_Phoenix 

Remove salesforce.com logo from SSP

Does someone have some way (code) to remove the "Powered by salesforce.com" logo from the self-service portal page? We desperatly need to get rid of that logo on our customer facing web portal.

Thanks
J_HinderJ_Hinder
I'm not sure which development environment you're in, but in .Net, you can use the WebHTTPRequest object to get only the HTML, then parse out the HTML that you don't want (the part including the 'powered by' image), and then display the rest of the HTML. You'll also need to create a cookie object to manage your session & requests in the Self Service Portal.
WarrenWarren
Another method of achieving this is to use the CSS to hide the image. Something like this for the log style works:

BORDER-COLOR: #DDDDDD;
BORDER-STYLE: solid;
BORDER-WIDTH: 1px;
display: none;
Jason JohansenJason Johansen

Awesome, Warren.  And it works.  Just took me a while to find it.  For others not wanting to spend more than 15 mins looking for it:

  1. Goto Setup page
  2. Customize
  3. Self-service
  4. Fonts and Colors
  5. Edit your HOME page
  6. Edit the LOGO visual element
  7. enter below in the Custom Style Sheet Editor (you only need the BOLD line the rest is there for reference).
  8. save and it affects all pages.
  9. Nice

BORDER-COLOR: #CC9999;
BORDER-STYLE: solid;
BORDER-WIDTH: 1px;
display: none;



Message Edited by Jason Johansen on 08-08-2008 03:33 PM