MediaWiki:Vector.css: Difference between revisions

From kJams Wiki
Jump to navigation Jump to search
No edit summary
Fix header background image URL - use absolute URL for PHP 8.4 compatibility
Line 3: Line 3:
     background-color: #f9f9f9;
     background-color: #f9f9f9;
     /* this assumes that your wiki is installed at '/w' in the web root */
     /* this assumes that your wiki is installed at '/w' in the web root */
     background-image: url('/w/skins/header_background.jpg');
     background-image: url('https://karaoke.kjams.com/w/skins/header_background.jpg');
     background-repeat: no-repeat;
     background-repeat: no-repeat;
}
}

Revision as of 22:21, 24 December 2025

/* CSS placed here will affect users of the Vector skin */
body {
    background-color: #f9f9f9;
    /* this assumes that your wiki is installed at '/w' in the web root */
    background-image: url('https://karaoke.kjams.com/w/skins/header_background.jpg');
    background-repeat: no-repeat;
}

#mw-page-base {
  background-image: none;
  background-color: transparent;
}