Eliminate Forum Description for Subscribed Forums?
#1
Original Poster
Join Date: Sep 2009
Location: RNO
Posts: 362
Eliminate Forum Description for Subscribed Forums?
Is there any way to stop the Forum Description from showing up on the "My Flyertalk" page (under Subscribed Forums)? I use a netbook and find I have to scroll quite a bit to see all of my Subscribed Forums, and that most of the vertical space is taken up by the Forum Description (for those forums that have them). Thanks!
#3



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.
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; \
} \
");


