jenkins-contrib-themes / jenkins-neo-theme

A modern flat theme for Jenkins
http://jenkins-contrib-themes.github.io/jenkins-neo-theme/
352 stars 94 forks source link

Build our own theme with a company logo! #25

Closed dkhode closed 8 years ago

dkhode commented 8 years ago

Hi All, Is there anyway we can change the logo?

dkhode commented 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

dkhode commented 8 years ago

Update:Fixed it by changing opacity from 1 to 0

a#jenkins-home-link { opacity: 0 !important; }