FlyerTalk Forums - View Single Post - Eliminate Forum Description for Subscribed Forums?
Old Jun 14, 2016 | 8:27 pm
  #3  
angra
1M
40 Countries Visited
All eyes on you!
 
Join Date: Aug 2006
Location: Smyrna, GA, USA
Programs: DL DM1MM
Posts: 1,763
Resurrecting this old thread because it was the only one I found asking for what I was looking for earlier.

I didn't find an option in the forum software, but found a CSS adjustment that accomplished it. I affected this adjustment via a tampermonkey script, though there are probably better ways to do it. script below. warning: I have about 20 minutes experience with Tampermonkey and with CSS, so, like, don't trust my code.


Code:
// ==UserScript==
// @name         FT Compress
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Attempt to compress flyertalk usercp
// @author       You
// @match        http://www.flyertalk.com/forum/usercp.php
// @grant          GM_addStyle
// ==/UserScript==

/*jshint multistr: true */
GM_addStyle ("\
             .alt1Active .smallfont { \
             font-size: 0px; \
             } \
             ");
angra is offline