Hi,

Just wanted to share a bunch of nice tricks I found out you can do with
Chatzilla, Mozilla's IRC client.

1. To IRC in Hebrew, use the command "/charset Windows-1255".

2. You can customize Chatzilla's chat window to go Right-to-Left,
either permanently, by adding:

body.chatzilla-body {
        direction:rtl !important;
}

to your ~/.mozilla/PROFILE/*/chrome/userContent.css (create it if it
doesn't exist) file, or by creating a custom CSS file and loading it
with the "/css" command whenever you wish.
(In fact, you can customize Chatzilla's looks completely that way --
and in fact, the default look of any web page.)

My other long-time favorite hack to include in this file is:

body
{
        line-height: 130% !important;
}

(This increases the default line height in web pages, which I feel
makes them prettier and easier to read.)

3. If you want the input box (where you enter your chat lines) in
Chatzilla to go Right-to-Left, add to your
~/.mozilla/PROFILE/*chrome/userChrome.css:

#chatzilla-window .input-widget
{
        direction:rtl !important;
}

#chatzilla-window .multiline-input-widget
{
        direction:rtl !important;
}

(This file allows you to style Mozilla's interface with the same
CSS commands as you use to design web pages!)

---

I bet you can do similar tricks with Netscape 7.0's AIM client. Just
explore around with the DOM Inspector (found in Tools > Web
Development).

=================================================================
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]

Reply via email to