OK, if you want to add a separation between the "Sticky Threads" and "Normal Threads", just add a
just before the
Code:
<div class="icon0 nonsticky">
statement. in the "FORUMDISPLAY_Separate" template and the "FORUMDISPLAY_Separate2" template.
I found that the text for "Sticky Threads" and "Normal Threads" were a bit cramped in that cell, so I added a space around the phrases. To do this, just add a little html code.
In the "FORUMDISPLAY_Separate" template, find
Code:
<p><b> $vbphrase[delim_normal]
. Replace
with
Code:
<table><tr><td height="25">
. Find
and replace it with
.
In the "FORUMDISPLAY_Separate2" template, find
Code:
<p><b> $vbphrase[delim_sticky]
. Replace
with
Code:
<table><tr><td height="25">
. Find
and replace it with
.
Note: You can replace the number "25" in the "<td height="25"> statement with a larger or smaller number to increase or decrease the space in that cell.