Community Central
Community Central

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* ====================
   GLOBAL NAV CHANGES (for Desktop XL)
   Makes the global nav the same width as the article space (how it should be, really)
   ==================== */

@media only screen and (min-width: 1596px) {
    /* Adjusts width of global nav */
    .wds-global-navigation {
        position: fixed;
        width: 1240px;
        margin: auto;
        left: inherit !important;
        padding: 0 20px;
    }
    
    .wds-global-navigation-wrapper {
        margin: auto;
        width: 1240px;
    }
    
    /* Moves chevron on global nav drop-down */
    .wds-global-navigation__dropdown-controls .wds-dropdown::after {
        margin-left: -16px;
    }
    
    /* Stretches editor page */
    body.editor .WikiaPage {
        border-top: 0;
        width: 1240px;
    }
}

/* Stretches search bar */
@media only screen and (min-width: 1500px) {
    .wds-global-navigation__search-container {
        margin-left: 20px;
        flex: auto;
    }
}

/* lol, I don't need these */
@media only screen and (min-width: 768px) {
    .wds-global-navigation__links {
        display: none;
    }
}

/* Gets rid of ugly gap between global and local navs */
.WikiaTopAds {
    display: none;
}