<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Tree lines like Phorum 3 module!</title>
        <description>This is a very highly requested feature for Phorum 5.  I originally thought I would have to make a hacked template to do it.  But, thanks to our awesome module system, here it is.  No recursion either so it is a lot faster than I thought it would have been.

A couple of things may have to be done for this to work.
[code]
1) You will have to edit the CSS for PhorumTableRow.  The top and
   bottom padding will have to be removed.  There may be a margin or
   border as well.
   
2) If black images will not work well on your site, there are white
   versions in the images dir.  You will need to either rename them or
   change the html img tag defs at the top of the mod_treeview
   function.

3) If you are using Phorum 5.1, you will need to edit list_threads.tpl
   a bit.  Find anywhere it read:
   
   style=&quot;padding-left: {ROWS-&gt;indent_cnt}px&quot;
   
   Remove that text.  Next find anywhere it says:
   
   {marker}
   
   Replace that text with:
   
   {ROWS-&gt;indent}

   Now edit read_threads.tpl in a similar way. Find anywhere it read:

   style=&quot;padding-left: {MESSAGES-&gt;indent_cnt}px&quot;

   Remove that text. Next find anywhere it says:

   {marker}

   Replace that text with:

   {MESSAGES-&gt;indent}

[/code]
That should do it.  There is a chance that mods will never see the tree in a pretty way due to the  moderation links under the messages.</description>
        <link>https://www.phorum.org/support/read.php?16,8231,8231#msg-8231</link>
        <lastBuildDate>Wed, 22 Jul 2026 02:41:50 -0500</lastBuildDate>
        <generator>Phorum 6.0.4</generator>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,135405#msg-135405</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,135405#msg-135405</link>
            <description><![CDATA[ tried to implement this in 5.2 but nothing happens<br />
I know this is for 5.1 versions but I see last user implemented it succesfully in 5.2<br />
any other experience with 5.2? I see missing tags like {marker} and others<br />
<br />
thanks]]></description>
            <dc:creator>Diego</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 12 Dec 2008 18:55:37 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,129879#msg-129879</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,129879#msg-129879</link>
            <description><![CDATA[ hello folks,<br />
<br />
this for solving the problem with the gaps between the lines in IE7. (tested for Version 5.2.7)<br />
<br />
After studying a long time, i figured out, that the reason is the following in the css.tpl for the img: &quot;vertical-align: middle&quot;.<br />
IE7 is adding a pixel above the gifs in that case .. well :(<br />
<br />
My way out of it:<br />
Do eyerything as described in the last Update from Snake (TreeviewModUpdate.zip).<br />
Then change all the 8 img-tag-lines in mods/treeview.php like this:<br />
<pre class="bbcode">
$t_gif=&quot;&lt;img src=\&quot;images/tree/t.gif\&quot; width=\&quot;9\&quot; height=\&quot;36\&quot; border=\&quot;0\&quot; style=\&quot;vertical-align: top;\&quot; /&gt;&quot;;</pre>
with an extra style=&quot;vertical-align: top;&quot;<br />
<br />
Then there are 2 possibilities i found for changing the templates list_threads.tpl AND read_threads.tpl:<br />
<br />
1)<br />
Put a trans.gif after MESSAGES-&gt;indent_cnt, like:<br />
<pre class="bbcode">
      &lt;td class=&quot;PhorumTableRow{altclass}&quot;&gt;&amp;nbsp;{MESSAGES-&gt;indent_cnt}
      &lt;img src=&quot;templates/YOUR_TEMPLATE/images/trans.gif&quot; width=&quot;1&quot; height=&quot;36&quot; border=&quot;0&quot; /&gt;</pre>
The result is not quite perfect: In Firefox the subject is 1 or 2 pixel above the middle and in IE7 it is 1 or 2 pixel below ..:) But for those who don´t need it perfect, it´s ok.<br />
<br />
OR<br />
<br />
2) For the perfect ones :)<br />
Change the templates list_threads.tpl AND read_threads.tpl in that way that you use a new table for the one td where the indent and the subject is!<br />
<br />
for example:<br />
<br />
<pre class="bbcode">
      &lt;td class=&quot;PhorumTableRow{altclass}&quot; style=&quot;padding-left: {MESSAGES-&gt;indent_cnt}px&quot;&gt;&amp;nbsp;{MESSAGES-&gt;indent}{marker}
        {IF MESSAGES-&gt;sort PHORUM_SORT_STICKY}
          &lt;span class=&quot;PhorumListSubjPrefix&quot;&gt;{LANG-&gt;Sticky}:&lt;/span&gt;
        {/IF}
        {IF MESSAGES-&gt;sort PHORUM_SORT_ANNOUNCEMENT}
          &lt;span class=&quot;PhorumListSubjPrefix&quot;&gt;{LANG-&gt;Announcement}:&lt;/span&gt;
        {/IF}
        {IF MESSAGES-&gt;moved}
          &lt;span class=&quot;PhorumListSubjPrefix&quot;&gt;{LANG-&gt;MovedSubject}:&lt;/span&gt;
        {/IF}
        &lt;a href=&quot;{MESSAGES-&gt;URL-&gt;READ}&quot;&gt;{MESSAGES-&gt;subject}&lt;/a&gt;&amp;nbsp;&lt;span class=&quot;PhorumNewFlag&quot;&gt;{MESSAGES-&gt;new}&lt;/span&gt;
      &lt;/td&gt;</pre>
<br />
change to:<br />
<br />
<pre class="bbcode">
      &lt;td class=&quot;PhorumTableRow{altclass}&quot;&gt;
	&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;
	  &lt;tr&gt;
	    &lt;td class=&quot;PhorumTableRow{altclass}&quot;&gt;&amp;nbsp;{MESSAGES-&gt;indent_cnt}&lt;/td&gt;
	    &lt;td class=&quot;PhorumTableRow{altclass}&quot; style=&quot;padding-left: 0px;&quot;&gt;
		{IF MESSAGES-&gt;sort PHORUM_SORT_STICKY}
		  &lt;span class=&quot;PhorumListSubjPrefix&quot;&gt;{LANG-&gt;Sticky}:&lt;/span&gt;
		{/IF}
		{IF MESSAGES-&gt;sort PHORUM_SORT_ANNOUNCEMENT}
		  &lt;span class=&quot;PhorumListSubjPrefix&quot;&gt;{LANG-&gt;Announcement}:&lt;/span&gt;
		{/IF}
		{IF MESSAGES-&gt;moved}
		  &lt;span class=&quot;PhorumListSubjPrefix&quot;&gt;{LANG-&gt;MovedSubject}:&lt;/span&gt;
		{/IF}
		&lt;a href=&quot;{MESSAGES-&gt;URL-&gt;READ}&quot;&gt;{MESSAGES-&gt;subject}&lt;/a&gt;&amp;nbsp;&lt;span class=&quot;PhorumNewFlag&quot;&gt;{MESSAGES-&gt;new}&lt;/span&gt;
	    &lt;/td&gt;
	  &lt;/tr&gt;
	&lt;/table&gt;
      &lt;/td&gt;</pre>
<br />
Please be careful if this code really fits in your files, because the MESSAGES-&gt;indent and the ROWS-&gt;indent -variables don´t exist any longer (my Version here: 5.2.7), but i´m not really sure about it. Well, in the treeview.php the MESSAGES-&gt;indent_cnt -variable is used and it works for list_threads.tpl and read_threads.tpl ..<br />
<br />
(One more note: If the links &quot;delete, move, merge threads&quot;  in the date-field bother, just delete the br there, and set the width for the td to 220, for example)<br />
<br />
That´s it! Believe me, i feel much more relaxed now ..:)<br />
<br />
PS: My special advice: Change the gifs with photoshop as you like it, but t,l,i,trans-gifs must have same width and m,n,c must have same width. All gifs must have same height, and it must be corrected in the files above, surely.]]></description>
            <dc:creator>chrissi</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 04 May 2008 07:59:23 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,121211#msg-121211</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,121211#msg-121211</link>
            <description><![CDATA[ The Site I have for my testing is done on my internal/local web-server, I have tested it via other computers as well, externally locating via my referring URL.<br />
<br />
By Extensive, that is what I meant, the time it takes to edit, LOL.<br />
<br />
Not having a test forum is a swine, I was using only 1 test forum, &amp; a server crash caused the whole thing to screw up completely.  Now I have 2 test forums, development &amp; stable.  Soon as the MOD I&#039;m working on, on the first test forum is working correctly, &amp; I&#039;ve tested the shit out of it, I copy it across to the second test Forum, replacing the database &amp; the files for that forum.<br />
<br />
Although I&#039;ve done work with HTML for years, I&#039;m a true beginner with PHP/MySQL/CSS Style Sheets.  So I&#039;m prone to use the easiest method available to me, until my knowledge/experience gets better, LOL.<br />
<br />
As a side-note, for a different thread you posted on, I have a query for you on <a href="http://www2.phorum.org/phorum5/read.php?18,112727,page=3" target="_blank"  rel="nofollow">Multi level folder support for new index view</a>, if you could kindly take a look, &amp; see if you can help with that thread?  I&#039;ll double check that thread regularly, for any new messages you post, instead of cross-posting on this thread.<br />
<br />
Thanks.]]></description>
            <dc:creator>Snake</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Mon, 26 Mar 2007 19:48:21 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,121205#msg-121205</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,121205#msg-121205</link>
            <description><![CDATA[ I didn&#039;t see any sites posted which are using your edits, so I wasn&#039;t sure who was and who wasnt, :P..<br />
<br />
I dont think my mods are very extensive, just more time consuming.. since all the modifications would be to code in loops, it shouldn&#039;t be that extensive, more just time consuming, I think.<br />
I also dont have handy a test phorum, so I have to be careful about what I do in production.<br />
<br />
if your mod solves the gap problems, then it&#039;s probably the right thing, although I&#039;m a big fan of using CSS to do as much work as possible, and saving bandwidth.]]></description>
            <dc:creator>freedman</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Mon, 26 Mar 2007 17:05:46 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,121204#msg-121204</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,121204#msg-121204</link>
            <description><![CDATA[ Thanks for the feedback on how you made your own edit.<br />
<br />
With your version, you specified how you fixed it, did it completely remove all the gaps?<br />
<br />
It seems to be quite a bit of editing in your version, granted that when I was coding my update to Brian&#039;s MOD, it took abit of time to get it all right, but now, as it is, if your following the instructions correctly, it should take less than 5 minutes to complete the edits to the files listed in the update version I previously uploaded here.<br />
<br />
You specified that your not using this mod at the moment, if you get the chance sometime, let me know how it looks on your site, if you still get any gaps, or if its fixed it.<br />
<br />
Yeah, I looked at lafcpug phorum prior to starting the coding of this MOD, I have seen other phorums as well with the same issue, that&#039;s partly why I coded this update, I wanted my own Phorum gaps solved as well.<br />
<br />
IE screwing with the view of a site, tell me about it, IE is one of the worst culprits for that.<br />
<br />
Since I made the MOD update, I have further tested it against IE 6.5, IE 7.0, Mozilla Firefox 2.0.0.3 &amp; Netscapte (but I can&#039;t remember what version that was), so far the MOD looks stable.]]></description>
            <dc:creator>Snake</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Mon, 26 Mar 2007 16:33:46 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,121203#msg-121203</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,121203#msg-121203</link>
            <description><![CDATA[ I was looking at the lafcpug phorum, and under IE7, as a general user, I see gaps in the vertical lines..  I&#039;ve experienced this type of thing on many sites I&#039;ve developed that have to have lines spanning columns.   Different browsers do different things when given the same instruction and it&#039;s terribly annoying...<br />
here&#039;s how I&#039;ve solved it... <br />
instead of using normal images within the tabledata, you have to make the lines the table background image... the browser will extend this properly based on the proper instruction.<br />
so, for example...<br />
THIS:<pre class="bbcode">
&lt;td class=&quot;PhorumTableRowAlt&quot;0px&quot;&gt;
 &lt;img src=&quot;mods/treeview/images/t.gif&quot; width=&quot;12&quot; height=&quot;21&quot; border=&quot;0&quot; /&gt;
  &lt;img src=&quot;mods/treeview/images/c.gif&quot; width=&quot;9&quot; height=&quot;21&quot; border=&quot;0&quot; &gt;&amp;nbsp;
  &lt;a href=&quot;[<a href="http://www.lafcpug.org/phorum/read.php?13,166366,166368#msg-166368&quot;&gt" target="_blank"  rel="nofollow">www.lafcpug.org</a>];
   Re: Shake Basics&lt;/a&gt;&amp;nbsp;
  &lt;span class=&quot;PhorumNewFlag&quot;&gt;&lt;/span&gt;
&lt;/td&gt;</pre>
should be:<pre class="bbcode">
&lt;td class=&quot;PhorumTableRowAlt&quot;0px&quot; background=&quot;mods/treeview/images/i.gif&quot; style=&quot;background-repeat:repeat-y&quot;&gt;
 &lt;img src=&quot;mods/treeview/images/t.gif&quot; width=&quot;12&quot; height=&quot;21&quot; border=&quot;0&quot; /&gt;
  &lt;img src=&quot;mods/treeview/images/c.gif&quot; width=&quot;9&quot; height=&quot;21&quot; border=&quot;0&quot; &gt;&amp;nbsp;
  &lt;a href=&quot;[<a href="http://www.lafcpug.org/phorum/read.php?13,166366,166368#msg-166368&quot;&gt" target="_blank"  rel="nofollow">www.lafcpug.org</a>];
   Re: Shake Basics&lt;/a&gt;&amp;nbsp;
  &lt;span class=&quot;PhorumNewFlag&quot;&gt;&lt;/span&gt;
&lt;/td&gt;</pre>
<br />
the only difference is that we&#039;re specifying a background image which is the vertical bar, so it will extend past the gaps should the browser decide to stick some space in their (often it will render a font slightly larger than you planned, and that&#039;s where you get a pixel or 2 gap.<br />
<br />
to save bandwidth, and hastle, it would make more sense to use CSS to solve this problem and have a class you use for the td which has the background image/background repeat in it.<br />
<br />
for alternating rows, the TR should have a class which specifies the row color, which should  cascade down to the td&#039;s so you can add a subclass to the td&#039;s<br />
<br />
so, I&#039;ve attached a couple pics.. one that shows your site with the spaces as I see them in IE7, and another with some quickie mods with IMHO, better use of CSS.<br />
<pre class="bbcode">
.treecontinue1 {
	background-image:url(Phorum  Shake 4_1_files/i1.gif);
	background-repeat:repeat-y;
	PADDING-RIGHT: 0px; PADDING-LEFT: 5px;
}</pre>
<pre class="bbcode">
        &lt;TR class=PhorumTableRowAlt&gt;
          &lt;TD class=&quot;treecontinue1&quot;&gt;&lt;IMG height=21 
            src=&quot;Phorum%20%20Shake%204_1_files/transpixel.gif&quot; width=12 border=0 /&gt;&lt;IMG 
            height=21 src=&quot;Phorum%20%20Shake%204_1_files/l.gif&quot; width=12 
            border=0 /&gt;&lt;IMG height=21 src=&quot;Phorum%20%20Shake%204_1_files/m.gif&quot; 
            width=9 border=0 /&gt;&amp;nbsp; &lt;A 
            href=&quot;[<a href="http://www.lafcpug.org/phorum/read.php?13,160444,160515#msg-160515&quot;&gt;Re" target="_blank"  rel="nofollow">www.lafcpug.org</a>]: 
            Compression in fileout nodes&lt;/A&gt;&amp;nbsp;&lt;SPAN 
            class=PhorumNewFlag&gt;&lt;/SPAN&gt; &lt;/TD&gt;</pre>
note, the class phorumtablerowalt, was moved up to the TR, so you dont need it in each column...this is a waste of bandwidth.  now we can use additional classes in the TD.<br />
in this case, treecontinue1, sets the background of i1.gif (this is i.gif with an additional 5 pixels on the lefthand side, to adjust for the left padding).<br />
<br />
to deal with the corners, you&#039;d need to make additional background images and associated css styles which dont &#039;repeat-y&#039; but are just a few pixels in lengths to fill in any potential top gap.<br />
there should be treecontinue2, which has 2 vertical bars, etc...<br />
so, you just specify the right class for the td depending on what&#039;s going on in that frame, then simply use one transparent gif to push the + and corners and end pieces into the right position.<br />
<br />
I&#039;m not currently using this mod, although I&#039;d like to, I just dont have time to get all this done at the moment, otherwise, I&#039;d have just modified and posted an updated version, but I think this should be enough for someone to move forward.<br />
<br />
Files included:<br />
Pic with spaces.<br />
pic with spaces fixed on the left vertical bar.<br />
new i1.gif with the vertical bar scooted over 5 pixels<br />
(NOTE:  i1.gif is only a pixel or 2 tall, since the browser will repeat the image, there&#039;s no need to have the file any larger than necessary.--ideally for bandwidth savings, it should be exactly 1 pixel tall.--it also doesn&#039;t need any of the transparent pixels on the right so this could be trimmed even more)]]></description>
            <dc:creator>freedman</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Mon, 26 Mar 2007 16:04:55 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,120984#msg-120984</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,120984#msg-120984</link>
            <description><![CDATA[ OK, I&#039;m in the middle of testing my forum, prior to compiling an archive of the files that make this work true (on user &amp; admin/moderator accounts).<br />
<br />
As soon as all the tests are complete, I will upload a .zip file for those wanting to update.<br />
<br />
P.S. I know some people have uploaded archives in tar.gz file format, I have no idea what program uses that, so mine will only be .zip<br />
<br />
************<br />
<br />
UPDATE:<br />
OK, after my Test Server crashed, rebuild &amp; even more testing, it&#039;s finally finished.  I have tested the Treeview Forum MOD with Multiple Messages, Users, &amp; Forums, and it all seems to work, all lined up correctly, WITHOUT ANY GAPS.<br />
<br />
Enjoy.]]></description>
            <dc:creator>Snake</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sat, 17 Mar 2007 19:51:27 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,120977#msg-120977</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,120977#msg-120977</link>
            <description><![CDATA[ I still haven&#039;t sorted any new images yet, the issue with the gaps in User Mode was simple.  However, the Admin/Moderate Threaded Mode was tricky.<br />
<br />
Goto your &quot;include/lang/english.php&quot; file, then do this:<br />
<br />
rename these<br />
        &quot;DeleteThread&quot;          =&gt;      &quot;Delete Thread&quot;,<br />
        &quot;MergeThread&quot;           =&gt;      &quot;Merge Thread&quot;,<br />
        &quot;MoveThread&quot;            =&gt;      &quot;Move Thread&quot;,<br />
to<br />
        &quot;DeleteThread&quot;          =&gt;      &quot;Delete&quot;,<br />
        &quot;MergeThread&quot;           =&gt;      &quot;Merge&quot;,<br />
        &quot;MoveThread&quot;            =&gt;      &quot;Move&quot;,<br />
<br />
Once these are renamed, save your file, clear the cache, refresh your page.  They will now ALL show up on 1 line, NO GAPS, fixed.<br />
<br />
It&#039;s like almost 3am here, if you need the full info on how I set mine, I will post that when asked.]]></description>
            <dc:creator>Snake</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 16 Mar 2007 21:37:44 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,120946#msg-120946</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,120946#msg-120946</link>
            <description><![CDATA[ Hi, I have been reading the messages re: this Tree Threading, after installing the MOD, it took me a couple of hours to fix the issue of gaps showing, but its all sorted, &amp; looks cool.<br />
<br />
What I would like to know, the images used for the tree, is there any chance of having a slightly larger version of these, as they show up as real small.  I&#039;ve tried making larger images, but it screws up the whole page.  Even if some1 could let me know how to fix the alignment sizes, with larger images, would be helpful.<br />
<br />
Also, quite some time back, &quot;D-rex&quot; metioned about using alternating colours in his forum, that is what I would like to do for my Forum, he mentioned he fixed it, but I haven&#039;t been able to find any information on how he did that.  I&#039;ve been playing with the settings in some of the *.tpl files, in the Templates folder, to see if I can set it myself, but all I have been able to do is edit the thread colours, not the individual posted message colours.  I would be grateful if some help could with this, or even a clue as to which file (there are lots of them).<br />
<br />
I am fairly new to PHP &amp; Forum/Phorum Design, so any help is grately appreciated.]]></description>
            <dc:creator>Snake</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Wed, 14 Mar 2007 09:35:35 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,120065#msg-120065</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,120065#msg-120065</link>
            <description><![CDATA[ Hi,<br />
<br />
these are my modified default <br />
<pre class="bbcode">
css.tpl
list_threads.tpl
read_threads.tpl</pre>
files.<br />
<br />
Beside the usual required modifications there&#039;s a special modification in the list_threads.tpl file which keeps the nice treeview look even for admins by replacing the written admin links &quot;delete&quot;, &quot;move&quot; and &quot;merge&quot; into &quot;x, -&gt; and -&gt;&lt;- signs in one line back again. The written words are not completely deleted but moved into title options of the referring links, so they appear when hovering over the admin links.<br />
<br />
<pre class="bbcode">
71c71
&lt;               &lt;a class=&quot;PhorumListModLink&quot; href=&quot;javascript:if(window.confirm(&#039;{LANG-&gt;ConfirmDeleteMessage}&#039;)) window.location=&#039;{ROWS-&gt;delete_url1}&#039;;&quot;&gt;{LANG-&gt;DeleteMessage}&lt;/a&gt;
---
&gt;               &lt;a class=&quot;PhorumListModLink&quot; href=&quot;javascript:if(window.confirm(&#039;{LANG-&gt;ConfirmDeleteMessage}&#039;)) window.location=&#039;{ROWS-&gt;delete_url1}&#039;;&quot; title=&quot;{LANG-&gt;DeleteMessage}&quot;&gt;x&lt;/a&gt;
74c74
&lt;               &lt;a class=&quot;PhorumListModLink&quot; href=&quot;javascript:if(window.confirm(&#039;{LANG-&gt;ConfirmDeleteThread}&#039;)) window.location=&#039;{ROWS-&gt;delete_url2}&#039;;&quot;&gt;{LANG-&gt;DeleteThread}&lt;/a&gt;{IF ROWS-&gt;move_url}&amp;nbsp;|&amp;nbsp;&lt;a class=&quot;PhorumListModLink&quot; href=&quot;{ROWS-&gt;move_url}&quot;&gt;{LANG-&gt;MoveThread}&lt;/a&gt;{/IF}&amp;nbsp;|&amp;nbsp;&lt;a class=&quot;PhorumListModLink&quot; href=&quot;{ROWS-&gt;merge_url}&quot;&gt;{LANG-&gt;MergeThread}&lt;/a&gt;{/IF}
---
&gt;               &lt;a class=&quot;PhorumListModLink&quot; href=&quot;javascript:if(window.confirm(&#039;{LANG-&gt;ConfirmDeleteThread}&#039;)) window.location=&#039;{ROWS-&gt;delete_url2}&#039;;&quot; title=&quot;{LANG-&gt;DeleteThread}&quot;&gt;x&lt;/a&gt;{IF ROWS-&gt;move_url}&amp;nbsp;|&amp;nbsp;&lt;a class=&quot;PhorumListModLink&quot; href=&quot;{ROWS-&gt;move_url}&quot; title=&quot;{LANG-&gt;MoveThread}&quot;&gt;-&amp;gt;&lt;/a&gt;{/IF}&amp;nbsp;|&amp;nbsp;&lt;a class=&quot;PhorumListModLink&quot; href=&quot;{ROWS-&gt;merge_url}&quot; title=&quot;{LANG-&gt;MergeThread}&quot;&gt;-&amp;gt;&amp;lt;-&lt;/a&gt;{/IF}</pre>
<br />
regards<br />
<br />
Orinoco]]></description>
            <dc:creator>orinoco</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Tue, 06 Feb 2007 18:46:33 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,117060#msg-117060</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,117060#msg-117060</link>
            <description><![CDATA[ If you read and follow this enitre thread you can remove the gaps. Just make sure you are not logged in as admin or a mod. Mods and admins will never see the tree lines without gaps.]]></description>
            <dc:creator>Michael Horton</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 01 Oct 2006 13:10:45 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,117057#msg-117057</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,117057#msg-117057</link>
            <description><![CDATA[ I am using treeview on eugenol_5-1-8 template [<a href="http://www.phorum.org/phorum5/read.php?21,8972,page=1" target="_blank" >www.phorum.org</a>]<br />
<br />
Please help, what I need to change to remove lines and gaps?<br />
<br />
Thanks.<br />
<br />
My test site is here [<a href="http://www.skydive.lt/forum5/read.php?1,3,3" target="_blank"  rel="nofollow">www.skydive.lt</a>]]]></description>
            <dc:creator>vaidotas</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 01 Oct 2006 10:54:28 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,115240#msg-115240</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,115240#msg-115240</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>pat</strong><br />Sometimes it just takes somebody to take the lead. Why don&#039;t you two just stick your heads together and issue an Classical-Treeview-Template-Set. It shouldn&#039;t be hard for knowledgeable guys like you.</div></blockquote>
<br />
Well I have had plans (before Brian informed about the next gen template) to make my own template (tm) :) for years (since 5beta) but real world issues like 3 under 4 year old kids have limited my time to do much.<br />
<br />
Either I should ask some tips for the kids from Brian or few hours less sleep during night time (hanging on a thread alredy...)<br />
<br />
So thank you for your kind words but even if want to I&#039;m just not able at the moment. I&#039;m more than willing to help and test or give some opinions even if that is considered helpful.<br />
<br />
I may check the current state of the template as it is and maybe change the default template as needed so the template can be shipped with the mod for example. I&#039;m sure Ulf is cabable of doing that too.]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Mon, 07 Aug 2006 14:30:15 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,115234#msg-115234</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,115234#msg-115234</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Ulf Dunkel</strong><br />Wouldn&#039;t it be nice to have the treeview stuff implemented as a base module in Phorum 5 finally?</div></blockquote>
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>Panu</strong><br />If it was cleaned up a little with admin sized images for example it would be perfect...</div></blockquote>
<br />
Sometimes it just takes somebody to take the lead. Why don&#039;t you two just stick your heads together and issue an Classical-Treeview-Template-Set. It shouldn&#039;t be hard for knowledgeable guys like you.]]></description>
            <dc:creator>pat</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Mon, 07 Aug 2006 12:22:34 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,115229#msg-115229</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,115229#msg-115229</link>
            <description><![CDATA[ Well it&#039;s more like an hack at the moment because you need to change css and templates.<br />
<br />
I would be happy if it replaced the &quot;triangle&quot; theme though :-) It&#039;s the main advantage UI vise compared to &quot;other&quot; forums. Unfortunately not many of my users use it and I have settled to use flat view be default.<br />
<br />
If it was cleaned up a little with admin sized images for example it would be perfect...]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Mon, 07 Aug 2006 10:56:48 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,115226#msg-115226</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,115226#msg-115226</link>
            <description><![CDATA[ Wouldn&#039;t it be nice to have the treeview stuff implemented as a base module in Phorum 5 finally?]]></description>
            <dc:creator>Ulf Dunkel</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Mon, 07 Aug 2006 10:12:35 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,115054#msg-115054</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,115054#msg-115054</link>
            <description><![CDATA[ ah the admin / mods.<br />
they have larger lines because of the delete/move links in the list-view.<br />
either remove those or make larger images just for moderators.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Thu, 03 Aug 2006 14:46:22 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,115041#msg-115041</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,115041#msg-115041</link>
            <description><![CDATA[ OK, accidently stumbled onto this. There appears to be no gaps in the tree line if I log out. If I log in the gaps appear. I&#039;m the admin so I assume this is something I just have to live with as do the moderators?<br />
<br />
I recall Brian saying something about mods will not see tree lines in pretty way &quot;due to the moderation links under the messages.&quot;]]></description>
            <dc:creator>Michael Horton</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Thu, 03 Aug 2006 12:50:27 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,114953#msg-114953</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,114953#msg-114953</link>
            <description><![CDATA[ tried it. No result. Dang. One of these days Panu. <br />
<br />
;)]]></description>
            <dc:creator>Michael Horton</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Tue, 01 Aug 2006 12:27:55 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,114951#msg-114951</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,114951#msg-114951</link>
            <description><![CDATA[ you could try border-bottom: 0px; instead of border-bottom: none;]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Tue, 01 Aug 2006 06:42:33 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,114919#msg-114919</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,114919#msg-114919</link>
            <description><![CDATA[ Well as is uusal with me I am a bit confused. I removed<br />
<br />
border-bottom-style: solid; <br />
border-bottom-color: #F2F2F2; <br />
border-bottom-width: 0px;<br />
<br />
from phorumtablerow and phorumtablerowalt<br />
<br />
Is that it? No change on my end. Still see the little gaps]]></description>
            <dc:creator>Michael Horton</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Mon, 31 Jul 2006 13:29:58 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,114900#msg-114900</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,114900#msg-114900</link>
            <description><![CDATA[ FF and Opera look fine here. IE shows a linewidth worth of space but ok, what would you expect :)<br />
<br />
btw &lt;td class=&quot;PhorumTableRowAlt&quot; 0px=&quot;&quot;&gt; is not valid, you have to get rid of everything else than &lt;td class=&quot;PhorumTableRowAlt&quot;&gt;<br />
<br />
for the gaps to go away try to remove<br />
<br />
    border-bottom-style: solid; <br />
    border-bottom-color: #F2F2F2; <br />
    border-bottom-width: 0px;<br />
<br />
from phorumtablerow]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Mon, 31 Jul 2006 02:56:18 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,114896#msg-114896</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,114896#msg-114896</link>
            <description><![CDATA[ Wait. I now have gaps in Camino. Thats weird. Clean one second, gaps the next.  Still, I feel like we accomplished a lot Panu<br />
<br />
;)]]></description>
            <dc:creator>Michael Horton</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Mon, 31 Jul 2006 01:28:21 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,114895#msg-114895</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,114895#msg-114895</link>
            <description><![CDATA[ Dang. It worked!! I have NO gaps in Camino but gaps in Safari and FF and first post in thread as well as stickys and Announcement are a little to the right of the forum border where they should be. Thanks so much Panu.<br />
<br />
Cant quite figure out what difference is with Safari and FF. Still got gaps in there but Camino is SO clean.<br />
<br />
I also notice in Thread view that in FF and Camino and NOT Safari the tiny &quot;Delete Thread | Move Thread | Merge Thread&quot; that Mods and Admin see, do not wrap as they do in Safari.<br />
<br />
Not a big deal but looks nicer in Safari.<br />
<br />
Boy, whatever happened to standards?]]></description>
            <dc:creator>Michael Horton</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Mon, 31 Jul 2006 01:21:20 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,114876#msg-114876</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,114876#msg-114876</link>
            <description><![CDATA[ You still have padding-left: 0px somewhere...<br />
<br />
this is taken from your page source:<br />
<br />
<pre class="bbcode">
&lt;tr&gt;
  &lt;td class=&quot;PhorumTableRow&quot; style=&quot;padding-left: 0px&quot;&gt;
  &lt;img src=&quot;mods/treeview/images/m.gif&quot; width=&quot;9&quot; height=&quot;21&quot; border=&quot;0&quot; /&gt;                      

 &lt;a href=&quot;[<a href="http://wiki.lafcpug.org/phorum/read.php?2,78,78#msg-78&quot;&gt;New" target="_blank"  rel="nofollow">wiki.lafcpug.org</a>] Board&lt;/a&gt;

 &lt;span class=&quot;PhorumNewFlag&quot;&gt;&lt;/span&gt;
  &lt;/td&gt;</pre>
<br />
As son as you have removed that padding from the list_threads.tpl<br />
<br />
<pre class="bbcode">
{ELSE}
  &lt;td class=&quot;PhorumTableRow&lt;?php echo $rclass;?&gt;&quot; <span style="color:#FF0000">style=&quot;padding-left: {ROWS-&gt;indent_cnt}px&quot;</span>&gt;</pre>
<br />
I think you can remove that same padding from (or the whole style=&quot;...) from sticky and announcement blocks too.<br />
<br />
Then make sure that you have the following in your stylesheet<br />
<br />
PhorumTableRow and PhorumTableRowAlt have<br />
<br />
height: 15px; //(this should be 21 or less, if you still have gaps it should be smaller than 21)<br />
padding: 0px;<br />
margin: 0px;<br />
padding-left 5px;<br />
<br />
And then try again.]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 30 Jul 2006 04:24:57 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,114875#msg-114875</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,114875#msg-114875</link>
            <description><![CDATA[ Hi D-Rex<br />
<br />
Before I give thie &quot;Gap Fix for Preview Cure&quot; a try I have a question. Not sure about your change in List Thread:<br />
<br />
ADD &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt; <br />
between {ROWS-&gt;new}&lt;/span&gt; <br />
and {IF VIEWCOUNT_COLUMN}<br />
<br />
My code as it exists now<br />
<br />
 &lt;a href=&quot;{ROWS-&gt;url}&quot;&gt;{ROWS-&gt;subject}&lt;/a&gt;&amp;nbsp;&lt;span class=&quot;PhorumNewFlag&quot;&gt;{ROWS-&gt;new}&lt;/span&gt;<br />
        &lt;/td&gt;<br />
      {/IF}<br />
      {IF VIEWCOUNT_COLUMN}<br />
<br />
<br />
So, question is..exactly where do I put the change since there is a &lt;/td&gt; and [/IF] in between. Or do I just replace &lt;/td&gt; and [/IF] with &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;<br />
<br />
Thanks from a PHP moron]]></description>
            <dc:creator>Michael Horton</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 30 Jul 2006 02:53:14 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,114873#msg-114873</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,114873#msg-114873</link>
            <description><![CDATA[ Well I tried this. At least I think I tried it if I understand what you are saying. No change. <br />
<br />
Thanks for staying with me on this Panu. Much appreciated. I just dont seem to be getting anywhere though. Still gaps in FF and Safari and Camino (smaller gaps in Camino)<br />
<br />
I dunno. Guess Tree lines are not in the cards for me.]]></description>
            <dc:creator>Michael Horton</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 30 Jul 2006 02:17:41 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,114868#msg-114868</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,114868#msg-114868</link>
            <description><![CDATA[ You have<br />
<pre class="bbcode">
              &lt;td class=&quot;PhorumTableRowAlt&quot;&gt;

but

              &lt;td class=&quot;PhorumTableRow&quot; style=&quot;padding-left: 0px;&quot;&gt;</pre>
<br />
So <br />
<br />
setting padding-left: 5px; only affects the very first thread.<br />
<br />
Remove style=&quot;padding-left: 0px;&quot; from the template and add padding-left: 5px; to PhorumTableRow and PhorumTableRowAlt in css file.]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 28 Jul 2006 15:17:46 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,114867#msg-114867</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,114867#msg-114867</link>
            <description><![CDATA[ Ok, I will. Any idea on how I might be able to indent the top post in a thread a couple pixels? Or are you not seeing that now. As I see it, the &quot;box&quot; rests right up against the forum wall rather than a couple pixels to the right as in Phorum 3.]]></description>
            <dc:creator>Michael Horton</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 28 Jul 2006 14:46:57 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8231,114866#msg-114866</guid>
            <title>Re: Tree lines like Phorum 3 module!</title>
            <link>https://www.phorum.org/support/read.php?16,8231,114866#msg-114866</link>
            <description><![CDATA[ No especially when I&#039;m using exactly the same resolution (Dell)... :)<br />
<br />
You could try Camino for another Gecko based browser to see if it&#039;s some setting of your FF. Not sure what setting it might be but Mac is different to windows in some ways.]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 28 Jul 2006 14:42:47 -0500</pubDate>
        </item>
    </channel>
</rss>
