Removes grey bar from TSR pages that contain it
TSR No More Grey Bar by daveohua
Details
Authordaveohua
LicenseMIT License
Categorythestudentroom
Created
Updated
Size671 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
To install this userstyle, the Stylus extension is required. This extension edits the CSS (client-side) of a webpage. Find the extension here:
Firefox
Google Chrome
Opera
Source code
/* ==UserStyle==
@name TSR No More Grey Bar
@version 20220217.16.43
@namespace userstyles.world/user/daveohua
@description Removes grey bar from TSR pages that contain it
@author daveohua
@license No License
==/UserStyle== */
@-moz-document url-prefix("https://www.thestudentroom.co.uk/showthread.php") {
#topFixedAd {
display: none;
}
#header {
top: 0px;
}
#burgerMenu {
top: 16px;
}
.dropdown-menu {
top: 55px;
}
.dropdown-menu > ul > li.search-box {
top: 55px;
}
#navigationMenu {
top: 55px;
}
.member {
padding-top: 55px;
}
@media (min-width: 981px){
.member {
padding-top: 115px;
}
}
#content {
padding-top: 0px;
}
}