Sunday, October 13, 2013

Limiting the width of Wikipedia pages

To limit the width of Wikipedia pages custom CSS can be used. Preferences -> Appearance -> Custom CSS
body {
    max-width: 65em;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    float: none; 
}
Source.

No comments:

Post a Comment