Go to the Enterprise Sample CSS directory located under the portal data directory, PortalServer-DataDir/portals/portal-ID/web-src/enterprise/css.
Modify the CSS file in the appropriate places
For example:
.channelBackground {
background-image: url(../images/banner.jpg);
background-repeat: no-repeat;
background-position-x: left;
background-position-y: top;
border-bottom: 1px solid #9900FF;
padding-bottom: 2px;
}
.channelBackgroundNoBorder {
background-image: url(../images/your-banner-filename.jpg);
background-repeat: no-repeat;
background-position-x: left;
background-position-y: top;
border-bottom: 1px none #9900FF;
|