Closed dkhode closed 8 years ago
Update: I added custom png file to style.less file
#header {
height: 45px;
background-color: @color-primary;
text-transform: uppercase;
z-index: 1030;
letter-spacing: 1px;
padding: 3px;
//Custom logo - path here
background: url('../images/mylogo.png') no-repeat, @color-primary;
background-size: auto 45px, cover;
......
.......
//Custom logo - hide the default images, but retain the link
#jenkins-home-link img {
opacity: 0;
}
My logo getting displayed but the dafault jenkins head icon and jenkins name icon are still present.
Am I missing anything here? Please help me out
Update:Fixed it by changing opacity
from 1
to 0
a#jenkins-home-link {
opacity: 0 !important;
}
Hi All, Is there anyway we can change the logo?