On Wednesday, November 6, 2013 7:49:43 AM UTC-6, Edward K. Ream wrote:

> I probably made a simple mistake: the code doesn't work on the w3schools 
trial pages either.

I just cut/pasted your first example (slightly modified, see below) to 
http://www.w3schools.com/html/tryit.asp?filename=tryhtml_intro.  It works.

That's good news: it means there is a relatively simple mistake somewhere 
in my @button code.  I'll correct it asap.

Edward

P.S.  Here is your (working) code, with the css in an <style> element:

<!DOCTYPE html>
<html>
<head>
<style>
ul {
    background-color: #ffffec;
}
li {
    background-image:
url('https://raw.github.com/vivainio/leo/master/leo/Icons/box00.GIF');
    background-repeat: no-repeat;
    background-position: 0px 5px;
    padding-left: 27px;
}
li.selected {
    background-color: lightgrey;
}
li.plus {
    list-style-image:
url('https://raw.github.com/vivainio/leo/master/leo/Icons/plusnode.gif');
}
li.minus {
    list-style-image:
url('https://raw.github.com/vivainio/leo/master/leo/Icons/minusnode.gif');
}
li.leaf {
    list-style-type: none;
}
li.body {
    background-image:
url('https://raw.github.com/vivainio/leo/master/leo/Icons/box01.GIF');
}
li.clone {
    background-image:
url('https://raw.github.com/vivainio/leo/master/leo/Icons/box04.GIF');
}
li.clonebody {
    background-image:
url('https://raw.github.com/vivainio/leo/master/leo/Icons/box05.GIF');
}
li.dirty {
    background-image:
url('https://raw.github.com/vivainio/leo/master/leo/Icons/box08.GIF');
} 
</style>
</head>
<body>
    <ul>
        <li class="minus body">Coffee</li>
        <ul>
            <li class="leaf">Maxwell House</li>
            <li class="leaf">Folger's</li>
            <li class="minus clone">Store</li>
            <ul>
                <li class="leaf body selected">Starbuck's</li>
                <li class="leaf body">Elsewhere</li>
            </ul>
        </ul>
        <li class="plus">Tea</li>
        <li class="plus">Coca Cola</li>
    </ul>
</body> 

EKR

-- 
You received this message because you are subscribed to the Google Groups 
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to