Where's the CSS / Template for the section header?

wii

Active member
As in:

Sort by:Title
Start Date ? Replies
Views Last Message

I can't find it, thanks
 
Admin CP -> Appearance -> Templates -> thread_list

Code:
	<dl class="sectionHeaders">
		<dt class="posterAvatar"><a><span>{xen:phrase sort_by}:</span></a></dt>
		<dd class="main">
			<a href="{xen:link forums, $forum, '_params={$orderParams.title}'}" class="title"><span>{xen:phrase title}{xen:helper sortArrow, $order, $orderDirection, title}</span></a>
			<a href="{xen:link forums, $forum, '_params={$orderParams.post_date}'}" class="postDate"><span>{xen:phrase start_date}{xen:helper sortArrow, $order, $orderDirection, post_date}</span></a>
		</dd>
		<dd class="stats">
			<a href="{xen:link forums, $forum, '_params={$orderParams.reply_count}'}" class="major"><span>{xen:phrase replies}{xen:helper sortArrow, $order, $orderDirection, reply_count}</span></a>
			<a href="{xen:link forums, $forum, '_params={$orderParams.view_count}'}" class="minor"><span>{xen:phrase views}{xen:helper sortArrow, $order, $orderDirection, view_count}</span></a>
		</dd>
		<dd class="lastPost"><a href="{xen:link forums, $forum, '_params={$orderParams.last_post_date}'}"><span>{xen:phrase last_message}{xen:helper sortArrow, $order, $orderDirection, last_post_date}</span></a></dd>
	</dl>
 
Top Bottom