IBM BPM, V8.0.1, All platforms > Customize and rebranding interfaces > Customize Process Portal > Customize banners > Hiding banner elements
Example: Customizing CSS styles to hide existing banner content in Process Portal
You can customize the banner in Process Portal so that all or part of it is hidden.
The theme.css file has a set of rules for hiding banner elements. These rules are commented out by default. When comment markers are deleted for a rule, the element is hidden.
The following example hides the name of the user that is currently logged on and the arrow that is used for the drop-down list of user actions by removing the comment markers from the following rules in the custom theme.css file.
/* -- Hide the user's name */ .processPortal .processPortalUserName { display: none;} /* -- Hide user dropdown arrow */ .processPortal .processPortalUserDropdown { display: none;}
Hiding banner elements in Process Portal