mcru
07-27-2009, 04:48 PM
I'm trying to change the color and font-weight in the <thead></thead> tags of a table by doing this...
<thead class="head1">
<th class="sortable-text"> Userid</th>
<th class="sortable-text">First Name</th>
<th class="sortable-text">Last Name</th>
<th class="sortable-text">Can Edit</th>
</thead>
I need the class="sortable-text" in my <th></th> because it's part of a javascript sorting library that I'm using. I have a feeling that's what's not allowing my head1 class to be applied to the table. Any suggestions?
<thead class="head1">
<th class="sortable-text"> Userid</th>
<th class="sortable-text">First Name</th>
<th class="sortable-text">Last Name</th>
<th class="sortable-text">Can Edit</th>
</thead>
I need the class="sortable-text" in my <th></th> because it's part of a javascript sorting library that I'm using. I have a feeling that's what's not allowing my head1 class to be applied to the table. Any suggestions?