Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

category_list.html bug

Quote Reply
category_list.html bug
hi

this block of code in the category_list.html template below is missing a closing </td> tag.

r


Code:
<%-- 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 bgcolor="<%dark_beige%>"><%top_row_font%>Moderators<%/top_row_font%>
--%>


edit > I just did a restore and it's back. I must have deleted it?... somehow.

Last edited by:

ryel01: May 30, 2002, 2:53 PM
Quote Reply
Re: [ryel01] category_list.html bug In reply to
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.

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&nbsp;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.
Quote Reply
Re: [ryel01] category_list.html bug In reply to
This is only to set the color of the border around the cell:

<td style="border-right:1px solid <%dark_beige%>">

The background color comes from the <%top_row%> global variable.

Jason Rhinelander
Gossamer Threads
jason@gossamer-threads.com