Search Community
- Force.com Discussion Boards
- :
- Salesforce User Discussions
- :
- Partner Relationship Management (PRM)
- :
- Branding with Partner Portal 3.0
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Branding with Partner Portal 3.0
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
04-20-2009 12:06 PM
Hey all,
Just wondering if anyone has a best practices document, or even know if you can still dig into the css as you did with Partner 3.0 instead of Partner 2.0. What I am specifically after right now is changing the look and feel of the object tabs (Fitting it into the style which the company's website utilizes, instead of just branding a header, and then having the portal fit in between, with the typical tabs and such.
Thanks all,
Nik
Solved! Go to Solution.
Re: Branding with Partner Portal 3.0
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
04-20-2009 01:00 PM
While it appears that out of the box the 3.0 portal allows you less control over the CSS than 2.0 you actually still have full control to override the 3.0 styles by putting the style statements in the portal header file.
See the simplified header file below which overrides some of the tab styles. You can find the class names by viewing the 3.0 page html (view source) and than overriding the style(s) in the header file.
<table width="980" border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <td align="left"><img src="https://na1.salesforce.com/servlet/servlet.Im
ageServer?id=01530000000nSgp&oid=00D300000007BMk" alt=""></td> <td> </td></tr> <tr> <td></td></tr> <tr><td align="left"> </td></tr> </table> <style type="text/css"> .tabNavigation { margin-top: 20px; background-color: #430C80; } #tabBar Div { font-weight: bold; background-image: none; } #tabBar td.currentTab div { font-weight: bold; background-image: none; } #tabBar a { text-decoration: none; } #tabBar div:hover { } .bodyDiv { } #bodyDiv, #container_pageFooter{ width:980px; left:0px; margin:0pt auto; position:relative; text-align:left; } #workspacePopularTags .pbButton, #container_sidebar h1.search div.icon { display:none; } .sidebarModuleBody { background-color: transparent; } .bPageBlock .pbTitle { color: #FFFFFF; } body { } </style></body></html>
Apprivo
Re: Branding with Partner Portal 3.0
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
04-20-2009 01:09 PM
Mondo Thanks, Andrew. I wasn't sure whether the proper body would override the css of the header. It's been a year since i played with the css files, and they weren't as apparent as previous. Now I need to find that css guide I had from a couple of years back!
Thanks again!
Nik

