<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:arial, helvetica, sans-serif;font-size:12pt"><DIV></DIV>
<DIV>I have never been able to control a table in HTML. It always has to be in the&nbsp;CSS.<BR>&nbsp;</DIV>
<P><FONT face="bookman old style, new york, times, serif" color=#ff007f size=4><EM><STRONG>Nancy</STRONG></EM></FONT></P>
<P>&nbsp;</P>
<P><FONT face="arial, helvetica, sans-serif">Injustice anywhere is a threat to justice everywhere. -- Dr. Martin L. King, Jr.</FONT></P>
<DIV><BR></DIV>
<DIV style="FONT-SIZE: 12pt; FONT-FAMILY: arial, helvetica, sans-serif"><BR>
<DIV style="FONT-SIZE: 12pt; FONT-FAMILY: times new roman, new york, times, serif"><FONT face=Tahoma size=2>
<HR SIZE=1>
<B><SPAN style="FONT-WEIGHT: bold">From:</SPAN></B> Blake Senftner &lt;bsenftner@earthlink.net&gt;<BR><B><SPAN style="FONT-WEIGHT: bold">To:</SPAN></B> development@drupal.org<BR><B><SPAN style="FONT-WEIGHT: bold">Sent:</SPAN></B> Thu, October 28, 2010 9:14:04 PM<BR><B><SPAN style="FONT-WEIGHT: bold">Subject:</SPAN></B> [development] some secret to using theme('table'...) ?<BR></FONT><BR>Hmmm... I have the following logic in a module's hook_view() creating a table out of programmatically generated information: 
<DIV><BR></DIV>
<DIV>
<DIV><FONT class=Apple-style-span face=Courier size=3><SPAN class=Apple-style-span style="FONT-SIZE: 12px">&nbsp;&nbsp;$header = &nbsp;array(t($node-&gt;title), t('Values:'));</SPAN></FONT></DIV>
<DIV><FONT class=Apple-style-span face=Courier size=3><SPAN class=Apple-style-span style="FONT-SIZE: 12px">&nbsp;&nbsp;$rows = array(array('&lt;strong&gt;Project status:&lt;/strong&gt;', $statusMarkup),&nbsp;</SPAN></FONT></DIV>
<DIV><FONT class=Apple-style-span face=Courier size=3><SPAN class=Apple-style-span style="FONT-SIZE: 12px">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;array('&lt;strong&gt;Notes:&lt;/strong&gt;', &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$node-&gt;content['body']['#value']),</SPAN></FONT></DIV>
<DIV><FONT class=Apple-style-span face=Courier size=3><SPAN class=Apple-style-span style="FONT-SIZE: 12px">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;array('&lt;strong&gt;Images:&lt;/strong&gt;', &nbsp; &nbsp; &nbsp; &nbsp; $imagesMarkup),</SPAN></FONT></DIV>
<DIV><FONT class=Apple-style-span face=Courier size=3><SPAN class=Apple-style-span style="FONT-SIZE: 12px">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;array('&lt;strong&gt;Image Tags:&lt;/strong&gt;', &nbsp; &nbsp; $imageTagMarkup),</SPAN></FONT></DIV>
<DIV><FONT class=Apple-style-span face=Courier size=3><SPAN class=Apple-style-span style="FONT-SIZE: 12px">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;array('&lt;strong&gt;Reconstructions:&lt;/strong&gt;',$reconsMarkup),</SPAN></FONT></DIV>
<DIV><FONT class=Apple-style-span face=Courier size=3><SPAN class=Apple-style-span style="FONT-SIZE: 12px">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;array('&lt;strong&gt;Actions:&lt;/strong&gt;', &nbsp; &nbsp; &nbsp; &nbsp;$actionsMarkup));</SPAN></FONT></DIV>
<DIV><FONT class=Apple-style-span face=Courier size=3><SPAN class=Apple-style-span style="FONT-SIZE: 12px">&nbsp;&nbsp;$table = theme('table', $header, $rows, array('style' =&gt; 'width: 770px', 'class' =&gt; 'form-item'));</SPAN></FONT></DIV>
<DIV><FONT class=Apple-style-span face=Courier size=3><SPAN class=Apple-style-span style="FONT-SIZE: 12px">&nbsp;&nbsp;$node-&gt;content['body']['#value'] = $table;</SPAN></FONT></DIV>
<DIV><BR class=webkit-block-placeholder></DIV>
<DIV><SPAN class=Apple-style-span style="FONT-FAMILY: Helvetica">
<DIV style="WORD-WRAP: break-word"><SPAN class=Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate; orphans: 2; widows: 2"><SPAN class=Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate; orphans: 2; widows: 2">
<DIV>Notice that portion where I declare the width of the table to only be 770px? That is being ignored... I've tried variations like:</DIV>
<DIV><BR></DIV>
<DIV>array( 'width' =&gt; '770px', ...) [note not 'style' here] and array( 'style' =&gt; 'width: 77px;', ...) [note added semicolon here]</DIV>
<DIV><BR></DIV>
<DIV>When I don't use the 'style' attribute, the sticky-header gets a style setting with the width set to '877.617px;',&nbsp;so it looks like the 'style' usage is what I need, but I'm not finding the magic combination...</DIV>
<DIV><BR></DIV>
<DIV>any advice?&nbsp;</DIV>
<DIV><BR class=Apple-interchange-newline>Sincerely,</DIV>
<DIV>-Blake</DIV>
<DIV><BR></DIV></SPAN></SPAN></DIV></SPAN></DIV></DIV></DIV></DIV></div></body></html>