Newskin Wiki
Register
Advertisement
Page rail

Page area affected by this change

The Rail is the vertical area on the righthand side of the page.

The Rail can be removed completely by adding the following code to your personal JS:

//removes the Rail completely
$('.WikiaRail').remove();

Please note that this also removes the Search box. If you want to keep that, it needs to be moved to another location first.

Removing the Rail can be accompanied by hiding it first, to avoid display strangeness while the page still loads:

/** hides Rail from view **/
.WikiaRail {
  display:none;
}

Following that, you can also change personal CSS to let content fill the full width that is now available:

/** Let content be full-width after Rail has been removed **/
.WikiaMainContent {
  width: 100% !important;
}
Advertisement