ok got it and i think i found the template now
its the threadbit template
only the code you say that i should change is not in it
however i found the code for the deleted threads i think
and i want the deleted threads to be red and bold
so should i edit this code ?
Code:
<if condition="$show['deletedthread']"> <img class="inlineimg" src="$stylevar[imgdir_misc]/trashcan_small.gif" alt="<phrase 1="$thread[deletedcount]">$vbphrase[x_deleted_posts]</phrase>" /> </if>
if yes what should i put in this code to make the deleted threads bold and red
something like this ?
Code:
<if condition="$show['deletedthread']"> <span style="color:red; text-weight: bold;">$thread[threadtitle]</span> <img class="inlineimg" src="$stylevar[imgdir_misc]/trashcan_small.gif" alt="<phrase 1="$thread[deletedcount]">$vbphrase[x_deleted_posts]</phrase>" /> </if>
Quote:
Originally Posted by Lynne
I don't see why you can't just modify that template (as I said above) to make it bold and red:
HTML Code:
<if condition="$show['threadtitle']"><em><span style="color:red; text-weight: bold;">$thread[threadtitle]</span></em></if>
|