De-clutters and simplifies the Escape From Tarkov Fandom wiki. It also makes the quest info box a floating window that follows you as you scroll.
Tarkov Wiki Declutter by Hexte

Details
AuthorHexte
LicenseNo License
Categoryescapefromtarkov.fandom.com
Created
Updated
Code size2.8 kB
Code checksum113410f5
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Tarkov Wiki Declutter
@version 20241218.21.48
@namespace https://userstyles.world/user/Hexte
@description De-clutters and simplifies the Escape From Tarkov Fandom wiki. It also makes the quest info box a floating window that follows you as you scroll.
@author Hexte
@license No License
==/UserStyle== */
@-moz-document url-prefix("https://escapefromtarkov.fandom.com") {
/**/
/**/
/**/
/* */
/* Disables page elements and expands remaining elements to the new empty space */
/* left vertical menu */
.global-navigation {
display: none;
}
.main-container {
margin-left: 0;
}
.fandom-sticky-header {
left: 0;
}
.search-modal,
.search-modal::before {
left: 0;
}
/* left edit button */
#log-in-edit-side-tool {
display: none;
}
.page__right-rail {
display: none;
}
.main-container {
width: auto;
}
/* registration buttons */
.global-registration-buttons {
display: none;
}
.community-header-wrapper {
height: auto;
}
/* theme switch button next to search??????? really???? */
.wiki-tools__theme-switch {
display: none;
}
.wiki-tools__search {
border-radius: 3px !important;
width: 100px;
}
/* page header buttons */
.page-header__actions {
display: none;
}
/* socials buttons bottom right */
#WikiaBar {
display: none;
}
/* footers */
.page-footer {
display: none;
}
#mixed-content-footer {
display: none;
}
.global-footer {
display: none;
}
.resizable-container {
margin-bottom: 0 !important;
}
#global-explore-navigation {
display: none;
}
/* floating quest info window */
/* for smaller and vertical screens */
@media only screen and (max-width: 1280px) {
.is-content-expanded .resizable-container > .page > .page__main > #content > #mw-content-text > .mw-parser-output > #va-infobox0 {
position: sticky;
background-color: #050504;
top: 45px;
z-index: 5;
margin-right: -30px;
}
.resizable-container > .page > .page__main > #content > #mw-content-text > .mw-parser-output > #va-infobox0 {
position: sticky;
top: 45px;
background-color: #050504;
z-index: 5;
margin-right: -30px;
}
.mw-parser-output > h2 {
width: 100%;
}
}
/* regular screens */
@media only screen and (min-width: 1280px) {
.is-content-expanded .resizable-container > .page > .page__main > #content > #mw-content-text > .mw-parser-output > #va-infobox0 {
position: sticky;
background-color: #050504;
top: 45px;
z-index: 5;
}
.resizable-container > .page > .page__main > #content > #mw-content-text > .mw-parser-output > #va-infobox0 {
position: sticky;
top: 45px;
background-color: #050504;
z-index: 5;
}
.mw-parser-output > h2 {
width: 100%;
}
}
}