alright, i have found a strange one for you this time. the code below in the category_list.html template looks like it's supposed to display with a dark_beige background, but it actually displays a dark green background.
<td style="border-right:1px solid <%dark_beige%>" width="1"><%top_row_font%>Threads<%/top_row_font%></td>
<td style="border-right:1px solid <%dark_beige%>" width="1"><%top_row_font%>Posts<%/top_row_font%></td>
<td width="1"><%top_row_font%>Last Post<%/top_row_font%></td>
<%-- If you want the moderator column to show up, uncomment this.
You'll also need to go through and increment the colspan's by 1 where needed.
<td width="125"><%top_row_font%>Moderators<%/top_row_font%></td>
--%>
it's got something to do with the...
piece of code. I cleaned it up to just read...
and now it displays in "dark_beige" as I think it was originally intended.
The template system on Gossamer Forum is hard work.
ahhhh well.
r.
Code:
<td style="border-right:1px solid <%dark_beige%>"><%top_row_font%>Forum Name<%/top_row_font%></td> <td style="border-right:1px solid <%dark_beige%>" width="1"><%top_row_font%>Threads<%/top_row_font%></td>
<td style="border-right:1px solid <%dark_beige%>" width="1"><%top_row_font%>Posts<%/top_row_font%></td>
<td width="1"><%top_row_font%>Last Post<%/top_row_font%></td>
<%-- If you want the moderator column to show up, uncomment this.
You'll also need to go through and increment the colspan's by 1 where needed.
<td width="125"><%top_row_font%>Moderators<%/top_row_font%></td>
--%>
it's got something to do with the...
Code:
<td style="border-right:1px solid <%dark_beige%>">piece of code. I cleaned it up to just read...
Code:
<td bgcolor="<%dark_beige%>">and now it displays in "dark_beige" as I think it was originally intended.
The template system on Gossamer Forum is hard work.
ahhhh well.
r.