Like the new Layout on Anandtech...

Fallen Kell

Diamond Member
Oct 9, 1999
6,225
541
126
Just wanted to say that I like it. Not sure when it changed (sometime over the weekend?), but today was the first time I saw it. Looks good. I really like that the current event posts are shown again on the front page like they were several years ago.
 

Lonyo

Lifer
Aug 10, 2002
21,938
6
81
I dislike it simply because it doesn't scale with resolution, which is kinda annoying :/
 

Beau

Lifer
Jun 25, 2001
17,730
0
76
www.beauscott.com
I don't like it.

The dark sides are ugly. The javascript rollovers take for ever to load (should be preloaded). The large blue ad space is too large.

I do like the tabs along the top, though.
 

MustangSVT

Lifer
Oct 7, 2000
11,554
12
81
what is this anandtech you ppl are talking about?..

I thought there were only forums!




all jokes aside, I rarely (once every 3 months?) go to the main site, but i come here (forums) many many many times aday :p
 

Electric Amish

Elite Member
Oct 11, 1999
23,578
1
0
Originally posted by: Beau
I don't like it.

The dark sides are ugly. The javascript rollovers take for ever to load (should be preloaded). The large blue ad space is too large.

I do like the tabs along the top, though.

#1 agree
#2 ? what rollovers?
#3 agree

amish
 

Fallen Kell

Diamond Member
Oct 9, 1999
6,225
541
126
hehe...you slackers still see banner ads? I've only seens a couple since doing this.

Go get mozilla (or Netscape 7) and then go setup a userContent.css in your chrome dir for your profile. Then go add in the following to that file:

/*
* This file can be used to apply a style to all web pages you view
* Rules without !important are overruled by author rules if the
* author sets any. Rules with !important overrule author rules.
*/

/*
* turns off "blink" element blinking
*/
/* blink { text-decoration: none ! important; } */

/*
* hides many ads by preventing display of images that are inside
* links when the link HREF contans certain substrings.
*/

A:link[HREF*="ad."] IMG { display: none ! important }
A:link[HREF*=".ad."] IMG { display: none ! important }
A:link[HREF*="ads."] IMG { display: none ! important }
A:link[HREF*="/ad"] IMG { display: none ! important }
A:link[HREF*="/A="] IMG { display: none ! important }
A:link[HREF*="/click"] IMG { display: none ! important }
A:link[HREF*="?click"] IMG { display: none ! important }
A:link[HREF*="?banner"] IMG { display: none ! important }
A:link[HREF*="=click"] IMG { display: none ! important }
A:link[HREF*="/ar.atwo"] IMG { display: none ! important }
A:link[HREF*="spinbox."] IMG { display: none ! important }
A:link[HREF*="transfer.go"] IMG { display: none ! important }
A:link[HREF*="adfarm"] IMG { display: none ! important }
A:link[HREF*="bluestreak"] IMG { display: none ! important }
A:link[HREF*="doubleclick"] IMG { display: none ! important }


/* disable ad iframes */
IFRAME[SRC*="ad."] { display: none ! important }
IFRAME[SRC*=".ad."] { display: none ! important }
IFRAME[SRC*="ads."] { display: none ! important }
IFRAME[SRC*="/ad"] { display: none ! important }
IFRAME[SRC*="/A="] { display: none ! important }
IFRAME[SRC*="/click"] { display: none ! important }
IFRAME[SRC*="?click"] { display: none ! important }
IFRAME[SRC*="?banner"] { display: none ! important }
IFRAME[SRC*="=click"] { display: none ! important }
IFRAME[SRC*="/ar.atwo"] { display: none ! important }
IFRAME[SRC*="spinbox."] { display: none ! important }
IFRAME[SRC*="transfer.go"] { display: none ! important }
IFRAME[SRC*="adfarm"] { display: none ! important }
IFRAME[SRC*="bluestreak"] { display: none ! important }
IFRAME[SRC*="doubleclick"] { display: none ! important }
IFRAME[SRC*="banners"] { display: none ! important }
IFRAME[SRC*=".swf?"] { display: none ! important }

/* IMG[usemap] { display: none ! important } */
IMG[SRC*="banners/"] { display: none | important }
IMG[SRC*="ad"] { display: none | important }
IMG[SRC*=".ad."] { display: none | important }

/* turning some false positives back off */

A:link[HREF*="download."] IMG { display: inline ! important }
A:link[HREF*="click.mp3"] IMG { display: inline ! important }

/*
* For more examples see http://www.mozilla.org/unix/customizing.html
*/

You might have some issues seeing flash. I don't usually view those pages on this browser, so I havn't tested if they will work properly or not. If you find yourself having problems you can try removing the above lines that have "swf" in them, but you will then be subject to flash ads that many sites now use.