Cisco Cisco Prime Service Catalog 10.0 Technical References

Page of 216
 
4-6
Cisco Prime Service Catalog 10.0 Configuration Guide
OL-31034-01
Chapter 4      Custom Style Sheets 
Custom Style Sheets
background-repeat: repeat-x;
}
.homeslider .blocks.block3 {
background-color: #9E6F9A; //#2B6F9A;
background-image: linear-gradient(to bottom, #EE86C0, #BE3157); // #7B86C0, #2B3157);
background-repeat: repeat-x;
}
</style>
  •
after.html – The content in this file is appended at the end of the html (body).
Here is a quick example on how to change the default Cisco Logo to some other company logo in the 
head.html file, as it is a style override:
<style>
.navbar-inner {
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); // disable gray header 
bar in IE
}
.navbar .nav {
color: #333;
text-shadow: none;
}
.navbar .nav ) li ) a {
color: #333;
text-shadow: none;
}
.psc-goto-cart {
color: #333 !important;
}
.psc-top-icon {
border:2px solid #333;
background-color: #333;
}
.navbar .brand {
float: left;
display: block;
height: 2em;
background-image: url("/RequestCenter/custom/MyCo/images/MyCo_logo92x33.gif");
background-repeat: no-repeat;
background-position: 0 .514em;
background-size:75px auto;
padding-left: 3em!important;
padding-right: 5em!important;
font-size: 1.571em;
line-height: 2.28em;
color: #333;
text-shadow: none;
}
</style>