Skip to content

Quora - Remove signup nag and allow scrolling by ccady

Imported and mirrored from https://raw.githubusercontent.com/uso-archive/data/flomaster/data/usercss/138185.user.css

Screenshot of Quora - Remove signup nag and allow scrolling

Details

Authorccady

LicenseCC0-1.0

Categoryquora

Created

Updated

Size821 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Removes the signup nag on Quora question pages. And allow scrolling.

Notes

2017-01-26: Original creation. Used CSS pattern matching.
2017-01-26: Fix scrolling problem by adding scrollability on the body.

Source code

/* ==UserStyle==
@name         Quora - Remove signup nag and allow scrolling
@namespace    USO Archive
@author       ccady
@description  Removes the signup nag on Quora question pages.  And allow scrolling.
@version      20170126.18.46
@license      CC0-1.0
@preprocessor uso
==/UserStyle== */
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("www.quora.com") {
  div[id*='_signup_wall_wrapper'] /* remove the wall itself */
  {
    display:none !important;  
  }
  div[class*='prevent_scroll'] /* remove any divs which are preventing scrolling */
  {
    display:none !important;  
  }
  body /* allow the body to scroll */
  {
    overflow:scroll !important;
  }
  div.ErrorBanner /* hide a useless "Internet connection problem" message */
  {
    display:none !important;  
  }
}

Reviews

No reviews yet.