CODE
<script src="http://antiwar.com/ewens/counter/casualties.js"></script>
<script>document.write(casualties.total_value);</script>
<script>document.write(casualties.total_value);</script>
So good so far. But then I want to formatt in in a specific way using css. But I can't get it to actually change the formatting.
I tried:
CODE
<script src="http://antiwar.com/ewens/counter/casualties.js"></script>
<script>document.write(‘<font STYLE=”font-family: Arial; font-size:12pt”>’ +casualties.total_value+’</font>’);</script>
<script>document.write(‘<font STYLE=”font-family: Arial; font-size:12pt”>’ +casualties.total_value+’</font>’);</script>
as well as using the <div> tag, and even setting the <td STYLE=> (forgot to mention that it's in a table).
All of that doesn't make any change. This is starting to get really obnoxious. Any help would be appreciated.


