Is there a way to hide L&R?

Saga

Banned
Feb 18, 2005
2,718
1
0
Is there a friggen forum option to hide L&R? I liked it far better when it wasn't visible and would prefer to return it to that state so I don't accidentally click on that instead of the Garage (as I'm so used to the positioning now I don't really look at the links).

That and I'd prefer not to be reminded that cesspool of idiocy exists, clicking on links that have Xstatic1's name on them is like a goddamn magnet because I know that anything I read by her will make me laugh at how much of a downy she sounds like.
 

zinfamous

No Lifer
Jul 12, 2006
111,866
31,364
146
could be worse. you could click on P&N instead of OT, like I often do.

suck it up, I guess.
 

Crono

Lifer
Aug 8, 2001
23,720
1,502
136
We should hide all other Forums, just because.

All we really need is like 8 forums.

Computer hardware, software, consumer electronics, off topic,politics and news, gaming, for sale/trade, and hot deals.

And maybe computer help as a 9th.

Really everything else could be consolidated or eliminated.
And tags could be added if people really need to sort and find certain types of topics.
 

sandorski

No Lifer
Oct 10, 1999
70,792
6,351
126
All we really need is like 8 forums.

Computer hardware, software, consumer electronics, off topic,politics and news, gaming, for sale/trade, and hot deals.

And maybe computer help as a 9th.

Really everything else could be consolidated or eliminated.
And tags could be added if people really need to sort and find certain types of topics.

I like my idea better, although I'm willing to settle for it just being for the OP.
 

Saga

Banned
Feb 18, 2005
2,718
1
0
Damnit guys thats not what I meant, I thought you could remove individual sections from the sidebar and I can't find how. The only one I don't want to show is L&R. It's an abomination.
 

Lean L

Diamond Member
Apr 30, 2009
3,685
0
0
Damnit guys thats not what I meant, I thought you could remove individual sections from the sidebar and I can't find how. The only one I don't want to show is L&R. It's an abomination.

Everyone knows what you meant. So damn you.
 

Crono

Lifer
Aug 8, 2001
23,720
1,502
136
Damnit guys thats not what I meant, I thought you could remove individual sections from the sidebar and I can't find how. The only one I don't want to show is L&R. It's an abomination.

There's probably a script out there that can do it. Or someone could write one. If I knew how to code for greasemonkey I would do it.
 

JulesMaximus

No Lifer
Jul 3, 2003
74,586
985
126
Damnit guys thats not what I meant, I thought you could remove individual sections from the sidebar and I can't find how. The only one I don't want to show is L&R. It's an abomination.

:confused: How about you just don't click on it?
 

Saga

Banned
Feb 18, 2005
2,718
1
0
:confused: How about you just don't click on it?

It's in the same place as the friggen Garage used to be and I don't look at the links, I just know where they are and click on them. I don't want to re-learn my mouse positions because they decided to un-hide something they (wisely) have had hidden since the new forum.
 

Crono

Lifer
Aug 8, 2001
23,720
1,502
136
It's in the same place as the friggen Garage used to be and I don't look at the links, I just know where they are and click on them. I don't want to re-learn my mouse positions because they decided to un-hide something they (wisely) have had hidden since the new forum.

I can see it being a little inconvenient, but maybe not monumental enough to post it in OT. Might get some response in suggestion box, though in truth that forum has been pretty worthless, especially as of late. The people who can actually make concrete changes aren't active members.
 

sandorski

No Lifer
Oct 10, 1999
70,792
6,351
126
There's probably a script out there that can do it. Or someone could write one. If I knew how to code for greasemonkey I would do it.

Make a Script that turns the OPs Mouse Cursor into the Link for L&R.
 

sonicdrummer20

Senior member
Jul 2, 2008
474
0
0
Is there a friggen forum option to hide L&R? I liked it far better when it wasn't visible and would prefer to return it to that state so I don't accidentally click on that instead of the Garage (as I'm so used to the positioning now I don't really look at the links).

That and I'd prefer not to be reminded that cesspool of idiocy exists, clicking on links that have Xstatic1's name on them is like a goddamn magnet because I know that anything I read by her will make me laugh at how much of a downy she sounds like.



Fixed... I like how quickly this term caught on!
 

Alone

Diamond Member
Nov 19, 2006
7,490
0
0
Delete your account. Guests cannot view the Love and Relationships sub-forum.
 

KeithTalent

Elite Member | Administrator | No Lifer
Administrator
Nov 30, 2005
50,231
118
116
Greasemonkey is always the answer to these types of questions.

KT
 

Ken g6

Programming Moderator, Elite Member
Moderator
Dec 11, 1999
16,705
4,663
75
Here's a Stylish script that'll do it:
Code:
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("forums.anandtech.com") {
#collapseobj_leftsidebar_1 tbody > tr:first-child + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr + tr { display:none }
}
This hides the forum listed at the position currently occupied by L&R. If L&R reappears you'll need to change the number of " + tr"s or something.

I think this is specific enough that in other browsers (anything but IE6) you could add just the one line that's inside the {}s as a general user style.