You are correct, border="0" is depreciated.

This will work:

 img {
        border: 0px;
        }

But this is more generally accepted as standard:

 img {
        border: none;
        }

Travis Heinstrom

On 7/15/2011 2:37 PM, Akemi Yagi wrote:
[log in to unmask]" type="cite">
On Fri, Jul 15, 2011 at 10:28 AM, Akemi Yagi <[log in to unmask]> wrote:
On Thu, Jul 14, 2011 at 12:31 PM, Troy Dawson <[log in to unmask]> wrote:

      
* sl-indexhtml
- Fixed minor typo's
- de-DE translation provided by Christoph Galuschka
- ja-JP translation provided by Tomoya Inoue
Just installed the ja version of RC1. When I started firefox, it
displayed the English page. I needed to add a '/ja-JP' to get to the
Japanese index.html.

Also, firefox shows a frame around the image at the top. Please see
this screenshot:

http://linux.toracat.org/SL/testing/sl61rc1FFscreenshot.png

I tried konqueror. It looks fine; no such frame is seen. The default
page was English though.
Addition of the following to the style section seems to fix it:

        img {
        border: 0px;
        }

An old-fashioned fix is to add border="0" to the <img > line. But this
is now deprecated?

Akemi