Gossamer Forum
Home : Products : Links 2.0 : Discussions :

I NEED HELP, ANY HELP WOULD BE GREATLY APPRECIATED

Quote Reply
I NEED HELP, ANY HELP WOULD BE GREATLY APPRECIATED
I would like to do something to the links in the subcategories section. Currently, my category's results is like the following

Affiliate - Here goes he description new pop (Added: 5-Jan-2001 Hits: 1000 Rating: 10 Votes: 100) Rate It

--> the format is -|

links - description (added: Hits: Ratings: Votes:) Rate It

But I would like it to be arrange in terms of table instead of a dot. First it would be much nicer and second much more tidier.



--------------------------------------------------
| Links - Description |
--------------------------------------------------
| Added: | Hits: | Ratings: | Votes: | |
--------------------------------------------------

What you see above is my propsed plan. what i want is actually very simple, to change the current links display page to tables instead of listings (those blakc dots). In that way, I can adjust the table border to make every results seems like it is in an individual table by itself.

Have you ever visited www.hotscripts.com or cgi-resources.com if you had, then you should know what I had meant


Thanks
Aaron
http://www.axesearch.com

PS: If you can solve my problems, I would allow you unlimited postings to one of my successful search engine page --> Axesearch.com which is receiving more than 3,500 visitors a day.

Quote Reply
Re: I NEED HELP, ANY HELP WOULD BE GREATLY APPRECIATED In reply to
You need to delete the <li></li> characters in the link.html file.

Then what you need to do is change the following codes in the category.html file:

Code:

<%if links%>
<%links%>
<%endif%>


to the following:

Code:

<%if links%>
<div align="center"><center>
<table border="0" width="100%" cellpadding="2" cellspacing="0">
<%links%>
</table>
</div></center>
<%endif%>


Then in your link.html, you would use the following codes:

Code:

<tr>
<td valign="top" width="100%" bgcolor="somecolor">
<a href="<%db_cgi_url%>/jump.cgi?ID=<%ID%>"><%Title%></a> -
<%Description%>
</td></tr>
<tr>
<td valign="top" width="100%" bgcolor="someothercolor">
LINK INFO STUFF
</td></tr>


Welcome to HTML. Tongue

Regards,

Eliot Lee