That was the first thing I tried, along with a few other css attempts. The problem is that the table Contrib:Table renders within the th has its align attribute set to center. I think that overrides the value in my css file.
Ron Piterman wrote:
if all you want is that the header is not centered, add the following to your html (or use an external css ) :

<style>
  TH {
    text-align: left;
  }
</style>

you really don't need to manipulate the table component for that...

cheers,
Ron

matt wear wrote:
Is there anyway to get <th> elements to align left? It seems that instead of rendering a simple <th><a href="">Header Name</a></th> Contrib:Table renders something. like:
<th>
  <table align="center">
    <tr>
       <td><a href="">Header Name</a></td>
    </tr>
  </table>
</th>

Which causes the the header name to always be center aligned. Please let me know if there is a simple fix to this. Thanks

- Matt Wear


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to