While I was working on a non Backgammon project this evening, I needed a
way to change the styles of some web pages that I don't host. I
discovered a small little addon that is available for Firefox and Chrome
(Don't believe there is one for IE). I realized that this utility may
work for the new Google Newsgroups. I believe Tim Chow mentioned this
issue previously. There is no way to set Monospace font when reading posts.
This plugin and a bit of CSS seemed to work for me.
The plugin home page can be found here:
http://userstyles.org/ . In the
middle of the page there are links "Stylish for Firefox" or "Stylish
for Chrome". Click on the one that is appropriate for you and then
install it.
The Chrome and Firefox addons do the same job but the interface to add
styles is a bit different between browsers (but not difficult to figure
out).
========
CHROME
========
If you are using Chrome there should be a stylized(and colorful) icon
with an "S" on the toolbar (likely to the right of the URL Bar).
Navigate to
http://groups.google.com in the browser as you normally
would. Click the S on the tool bar. There should be an menu item "manage
installed styles". Click it. A page should appear in the browser. On the
left hand side click the "Write New Style" button. In the name field you
can put anything but "Google Groups - Monospace" would be a reasonable
name. Underneath that enable the "Enabled" checkbox. In the code text
entry box enter:
#inbdy, #cmp_body, .GGC-W4ACF3, .GGC-W4ACG1 {
font-family: monospace !important;
font-size: 90% !important;
/* font-size: 12pt !important; */
}
Under code there is likely a button called "Specify". Click it. If there
is no "Specify" button there is likely a drop down list, and a remove
and add button. In the drop down box select "URL" and in the text entry
box to the right of that enter:
groups.google.com
Now on the left hand side of the page click the "Save" button. Now go to
groups.google.com, and view rec.games.backgammon. If everything works
the text of a message should be monospaced.
=========
Firefox
=========
After installation there should be a grey "S" in the status bar in the
bottom left hand corner of the web browser. Click on "Write new Style",
click on "Blank Style". A window should appear. In the "Name" field
enter anything you wish as a description "Google Groups - Monospace"
will suffice. Leave "Tags" field blank. In the large text entry box
enter this:
@namespace url(
http://www.w3.org/1999/xhtml);
@-moz-document domain("
groups.google.com") {
#inbdy, #cmp_body, .GGC-W4ACF3, .GGC-W4ACG1 {
font-family: monospace !important;
font-size: 90% !important;
/* font-size: 12pt !important; */
}
}
Click the "save" button. Now navigate to
http://groups.google.com in the
browser and then go to rec.games.backgammon. When reviewing messages,
diagrams should now appear in a monospaced font.
======================
Anyone who understand Cascading Style Sheets, classes and attributes can
actually change other attributes to customize viewing. You can change
the color, font size, the font etc.
If you go to
http://userstyles.org/styles/browse/ you can find a
variety of styles that people have made for a variety of webpages. They
can give you ideas on creating your own themes, styles, etc.