Remove the right sidebar and center the content.
wikiHow Sidebar Remover by rinzaicss
Details
Authorrinzaicss
LicenseMIT
Categorywikihow.com
Created
Updated
Size459 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name wikiHow Sidebar Remover
@namespace github.com/openstyles/stylus
@version 1.0.0
@description It removes the right sidebar.
@author rinzaicss
==/UserStyle== */
@-moz-document domain("wikihow.com") {
div[id="sidebar"] {
display: none !important;
}
div[id="content_wrapper"] {
display: flex !important;
justify-content: center !important;
align-items: center !important;
}
}