<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
<br>
Emerson, Tom wrote:
<blockquote
 cite="mid6BCD25A11DA16948942E030B6413BAE0026A7982@wbmsburexmb03.amer.warnerbros.com"
 type="cite">
  <pre wrap="">I ended up with:

table.blog div {
    margin: 2em 0 0 0 ;
    width: 100%
    border: 2px solid #ff0;
}

which is close, but I see some other areas get some "blank space" I wasn't expecting...

aha:
  </pre>
  <blockquote type="cite">
    <blockquote type="cite">
      <pre wrap="">&lt;table class="blog" cellpadding="0" cellspacing="0"&gt;
 &lt;tr&gt;&lt;td valign="top"&gt;
  &lt;div&gt;          &lt;==== this is the "div" we're expecting to affect
      </pre>
    </blockquote>
  </blockquote>
  <pre wrap=""><!---->[...]
  </pre>
  <blockquote type="cite">
    <blockquote type="cite">
      <pre wrap="">   &lt;table class="contentpaneopen"&gt;
     &lt;tr&gt;
     &lt;td valign="top" colspan="2"&gt;
     &lt;div&gt;&lt;span class="Subhead"&gt;Sgvlug is now back online!&lt;/span&gt;[...]&lt;/div&gt;
      </pre>
    </blockquote>
  </blockquote>
  <pre wrap=""><!---->
but THIS div ALSO got extra spacing, which I wasn't expecting [especially as it is a div in a "contentpaneopen" table, not a "blog" table]

[...]
  </pre>
  <blockquote type="cite">
    <blockquote type="cite">
      <pre wrap="">   &lt;/table&gt;
  &lt;/div&gt;
      </pre>
    </blockquote>
  </blockquote>
  <pre wrap=""><!---->
--some-- extra spacing now appears, however the "border" attribute isn't showing up at all</pre>
</blockquote>
<pre wrap="">The "contentpaneopen" table is nested inside the "blog" table, so any &lt;div&gt;s inside it will also inherit your styling. You're going to have to style the table.contentpaneopen div separately. Note that the &lt;div&gt;'s content is wrapped in an inline &lt;span&gt; tag, so you can style that too if you want.

As for the border, I'm guessing you'll need to style the &lt;a&gt; tag:
table div a {
    width: 100%;
    border: 2px solid #ff0;
}

Doug

</pre>
</body>
</html>