MediaWiki talk:Common.css: Difference between revisions

No edit summary
No edit summary
 
Line 48: Line 48:


THIS WORKS !!
THIS WORKS !!
it limits the width of the text area ONLY using "standard" and not "wide"
<pre>
<pre>
.vector-feature-limited-width-clientpref-1 .mw-content-container {
.vector-feature-limited-width-clientpref-1 .mw-content-container {
    max-width: 900px;
    margin: 0 auto;
}
</pre>
HERE to limit the width of hte entire page:
<pre>
/* limit page width using standard and not wide */
.vector-feature-limited-width-clientpref-1 body {
     max-width: 900px;
     max-width: 900px;
     margin: 0 auto;
     margin: 0 auto;
}
}
</pre>
</pre>
Return to "Common.css" page.