I'm switching to a three column layout, and want to change the width of the 'Last Post' column of ForumCategoryList.
As it is, when the whole object is squeezed into a center column there's too much wasted space, so I want to make that column more narrow.
I've tried adding
<HeaderTemplate>
<tr class="forumRowTitle">
<th colspan="2" align="left" class="header1 headerForum"
width ="70%"> <YAF:LocalizedLabel ID="ForumHeaderLabel" runat="server" LocalizedTag="FORUM" />
</th>
<th id="Td1" class="header1 headerModerators" width="1%" runat="server" visible="<%# PageContext.BoardSettings.ShowModeratorList %>">
<YAF:LocalizedLabel ID="ModeratorsHeaderLabel" runat="server" LocalizedTag="MODERATORS" />
</th>
<th class="header1 headerTopics" width="4%">
<YAF:LocalizedLabel ID="TopicsHeaderLabel" runat="server" LocalizedTag="TOPICS" />
</th>
<th class="header1 headerPosts" width="4%">
<YAF:LocalizedLabel ID="PostsHeaderLabel" runat="server" LocalizedTag="POSTS" />
</th>
<th class="header1 headerLastPost"
width="5%">
<YAF:LocalizedLabel ID="LastPostHeaderLabel" runat="server" LocalizedTag="LASTPOST" />
</th>
</tr>
</HeaderTemplate>
but Forum column will only grow to about 50%, and LastPost column won't get any smaller than it is.
suggestions?
RichP714 attached the following image(s):