MediaWiki:Common.css: Difference between revisions

From NAMFORUM Wiki
Jump to navigation Jump to search
Created page with "CSS placed here will be applied to all skins: #p-logo { width: 220px; } #p-logo a { width: 220px; background-size: 220px 75px; background-repeat: no-repeat; background-position: center; }"
 
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* NAMFORUM Legacy Vector sidebar width */
#mw-panel {
    width: 240px;
}
#p-logo {
#p-logo {
     width: 220px;
     width: 220px;
Line 9: Line 14:
     background-repeat: no-repeat;
     background-repeat: no-repeat;
     background-position: center;
     background-position: center;
}
/* Move the main page area to the right of the wider sidebar */
#content,
#footer {
    margin-left: 240px;
}
#left-navigation {
    margin-left: 240px;
}
}

Revision as of 02:53, 1 September 2026

/* CSS placed here will be applied to all skins */
/* NAMFORUM Legacy Vector sidebar width */
#mw-panel {
    width: 240px;
}

#p-logo {
    width: 220px;
}

#p-logo a {
    width: 220px;
    background-size: 220px 75px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Move the main page area to the right of the wider sidebar */
#content,
#footer {
    margin-left: 240px;
}

#left-navigation {
    margin-left: 240px;
}