<?xml version="1.0" encoding="UTF-8"?>
<post>
  <body>Yeah, and they hint that more changes are coming.  You might want to just wait a bit to update it.  But don't give up Mark, I'm still using this.  (Although modified, see below)

I originally loved this script just to see the feed name at the top.  They fixed that now, but I still can't read the small font so I went ahead and fixed a couple of things.

The fontsize code still mostly works, but they started playing around with &quot;line-height&quot; so you have to override that too.

divsPostDivArray[i].style.fontSize = '1.3em';
divsPostDivArray[i].style.lineHeight = '1.3em';


If you want the old &quot;every other post is bluish&quot; look back, you can do this 

//* Alt-Entry Border *//
if(useOutlinesForAlternatingStories == 'true'){
  var allEntries, thisEntry;
  allEntries = document.evaluate(
     &quot;//DIV[@class='entry'][position() mod 2 = 0 ]&quot;,
     document,
     null,
     XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
     null);
  for (var i = 0; i &lt; allEntries.snapshotLength; i++) {
     thisEntry = allEntries.snapshotItem(i);
     thisEntry.style.border = '1px solid '+altOutline;
     thisEntry.style.backgroundColor = altBackground;
  }

  allEntries = document.evaluate(
     &quot;//DIV[@class='entry-line']&quot;,
     document,
     null,
     XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
     null);
  for (var i = 0; i &lt; allEntries.snapshotLength; i++) {
     thisEntry = allEntries.snapshotItem(i);
     thisEntry.parentNode.removeChild(thisEntry);
  }
}



and then set 'altOutline' and a new 'altBackground' to whatever.  I used

var altOutline = '#C6DDF2';
var altBackground = '#F0F8FF';</body>
  <body-html>&lt;p&gt;Yeah, and they hint that more changes are coming.  You might want to just wait a bit to update it.  But don't give up Mark, I'm still using this.  (Although modified, see below)&lt;/p&gt;

&lt;p&gt;I originally loved this script just to see the feed name at the top.  They fixed that now, but I still can't read the small font so I went ahead and fixed a couple of things.&lt;/p&gt;

&lt;p&gt;The fontsize code still mostly works, but they started playing around with &quot;line-height&quot; so you have to override that too.&lt;/p&gt;

&lt;p&gt;divsPostDivArray[i].style.fontSize = '1.3em';
&lt;br /&gt;divsPostDivArray[i].style.lineHeight = '1.3em';&lt;/p&gt;

&lt;p&gt;If you want the old &quot;every other post is bluish&quot; look back, you can do this &lt;/p&gt;

&lt;p&gt;//* Alt-Entry Border *//
&lt;br /&gt;if(useOutlinesForAlternatingStories == 'true'){
&lt;br /&gt;  var allEntries, thisEntry;
&lt;br /&gt;  allEntries = document.evaluate(
&lt;br /&gt;     &quot;//DIV[@class='entry'][position() mod 2 = 0 ]&quot;,
&lt;br /&gt;     document,
&lt;br /&gt;     null,
&lt;br /&gt;     XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
&lt;br /&gt;     null);
&lt;br /&gt;  for (var i = 0; i &amp;lt; allEntries.snapshotLength; i++) {
&lt;br /&gt;     thisEntry = allEntries.snapshotItem(i);
&lt;br /&gt;     thisEntry.style.border = '1px solid '+altOutline;
&lt;br /&gt;     thisEntry.style.backgroundColor = altBackground;
&lt;br /&gt;  }&lt;/p&gt;

&lt;p&gt;  allEntries = document.evaluate(
&lt;br /&gt;     &quot;//DIV[@class='entry-line']&quot;,
&lt;br /&gt;     document,
&lt;br /&gt;     null,
&lt;br /&gt;     XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
&lt;br /&gt;     null);
&lt;br /&gt;  for (var i = 0; i &amp;lt; allEntries.snapshotLength; i++) {
&lt;br /&gt;     thisEntry = allEntries.snapshotItem(i);
&lt;br /&gt;     thisEntry.parentNode.removeChild(thisEntry);
&lt;br /&gt;  }
&lt;br /&gt;}&lt;/p&gt;

&lt;p&gt;and then set 'altOutline' and a new 'altBackground' to whatever.  I used&lt;/p&gt;

&lt;p&gt;var altOutline = '#C6DDF2';
&lt;br /&gt;var altBackground = '#F0F8FF';&lt;/p&gt;</body-html>
  <created-at type="datetime">2006-01-27T15:18:52Z</created-at>
  <forumable-id type="integer">2034</forumable-id>
  <forumable-type>Script</forumable-type>
  <id type="integer">73434</id>
  <topic-id type="integer">16974</topic-id>
  <updated-at type="datetime">2008-11-17T00:19:33Z</updated-at>
  <user-agent nil="true"></user-agent>
  <user-id type="integer">2364</user-id>
</post>
