IBM BPM, V8.0.1, All platforms > Customize and rebranding interfaces > Customize Process Portal > Customize Process Portal spaces > Create and customizing styles > Create styles
Customize the footer for a Process Portal space
You can customize the footer that is usually found at the bottom of every page in a space. By default, the footer contains an IBM logo.
You can hide the default logo, or even the entire footer.
You can replace the logo with your own logo, and you can change the background color and image of the footer.
The cascading style sheet (CSS) contains the code that controls the appearance and contents of the footer.
Procedure
- To hide the IBM logo, which by default appears at the left of the footer, use the following code in the CSS file:
.customStyle .bspaceFooterIBMLogo { display: none;}Tip: To replace the IBM logo, replace the background-image tag with an image of your own.
- To change the background color or image of the footer, use the following code in the CSS file:
.customStyle .bspaceFooter { background-image: none; background-color: #00CC00; margin-bottom: 0; margin-top: 0;}Tip: To replace the background image, replace the background-image tag with an image of your own. To hide the entire footer completely, use the display: none; style.