Gossamer Forum
Home : Products : Links 2.0 : Customization :

Scroll Scroll Scroll

Quote Reply
Scroll Scroll Scroll
Hi there everyone. Because i know you all work so hard i thought i would give you an easy question. I am no programmer but i imagine what i'm about to ask is easy to solve. When you add a site to Links2 and you get the success page displaying what has been submited, if someone does this : "eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeewrewrwerwerwererwerwerwerwerwerwerwerwerwerwerwerwrwerwerwerwerwerwerwerwerwerw" in the diescription it forces the success page to scroll. Is there any way to stop this, i have tried hard wraps but it doesn't work.

Quote Reply
Re: Scroll Scroll Scroll In reply to
This is not a programming issue. This is an HTML issue. The problem is caused by the <pre>...</pre> tags in the add_succsess.html template or sub site_html_add_success, site_html.pl. The code looks like this:
Code:
<p>We have received the following link:</p>

<pre><strong> Title: <%Title%>
URL: <%URL%>
Description: <%Description%>
Contact Name: <%Contact Name%>
Contact Email: <%Contact Email%>
Category: <%Category%>
</strong></pre>
What I did to overcome this was to setup a table instead as in the following code:
Code:
<b>We have received the following resource addition:</b>
<p>
<table cellpadding=3 border=1 valign="top" align="center">
<tr><td align="right">
<b>Title:</b>
</td><td>
<%Title%>
</td></tr><tr><td align="right">
<b>URL:</b>
</td><td>
<%URL%>
</td></tr><tr><td align="right">
<b>Category:</b>
</td><td>
<%Category%>
</td></tr><tr><td align="right">
<b>Description:</b>
</td><td>
<%Description%>
</td></tr><tr><td align="right" nowrap>
<b>Contact Name:</b>
</td><td>
<%Contact Name%>
</td></tr><tr><td align="right" nowrap>
<b>Contact Email:</b>
</td><td>
<%Contact Email%>
</td></tr><tr><td align="right" nowrap>
<b>Receive Email:</b>
</td><td>
<%ReceiveMail%>
</td></tr></table>
Using that code, the submitted resource information displays quite nicely. I hope this helps.

- Bobsie
bobsie@orphanage.com
http://goodstuff.orphanage.com/