<!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=""><table class="blog" cellpadding="0" cellspacing="0">
<tr><td valign="top">
<div>         <==== this is the "div" we're expecting to affect
</pre>
</blockquote>
</blockquote>
<pre wrap=""><!---->[...]
</pre>
<blockquote type="cite">
<blockquote type="cite">
<pre wrap=""> <table class="contentpaneopen">
<tr>
<td valign="top" colspan="2">
<div><span class="Subhead">Sgvlug is now back online!</span>[...]</div>
</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=""> </table>
</div>
</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 <div>s inside it will also inherit your styling. You're going to have to style the table.contentpaneopen div separately. Note that the <div>'s content is wrapped in an inline <span> tag, so you can style that too if you want.
As for the border, I'm guessing you'll need to style the <a> tag:
table div a {
width: 100%;
border: 2px solid #ff0;
}
Doug
</pre>
</body>
</html>