"N. Marshall" <[EMAIL PROTECTED]> wrote:
>It's implemented. Post your code so we can see whats wrong.
I have a solution now. What I did before was to choose the file on the File
menu and open it in a new window. This results in a blank browser window
with garbage characters in the title bar. When I choosed to open it in the
same window, it worked perfectly; the result was even better than in Opera!
Still with the garbage characters in the title bar though...
My XML file:
<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet type="text/css" href="toc.css"?>
<toc>
<message>
<date>2000-04-20 23:17:16</date>
<name>Gustaf Liljegren</name>
<email>[EMAIL PROTECTED]</email>
<subject>Testing</subject>
</message>
<message>
<date>2000-04-21 18:11:16</date>
<name>John Smith</name>
<email>[EMAIL PROTECTED]</email>
<subject>Another test</subject>
</message>
</toc>
And the CSS:
toc {
display: block;
background-color: #640034;
color: #FFB9DD
}
message {
display: block;
background-color: #8C0048;
font: 10pt "Verdana", sans-serif;
margin-bottom: 5px;
padding: 0.5em;
}
date {
display: block;
font: 14pt "Tahoma", sans-serif;
color: white;
margin-bottom: 0.4em;
}
name {
display: inline;
text-indent: 2em;
}
email {
display: inline;
font: 10pt "Courier New", monospace;
}
email:before { content: "<"; }
email:after { content: ">"; }
subject {
display: block;
}
Regards,
Gustaf Liljegren