Author |
Message |
Darrell3831
Worker
![Worker Worker](modules/Forums/images/ranks/3stars.gif)
![](modules/Forums/images/avatars/Misc/linux.gif)
Joined: Feb 18, 2004
Posts: 244
|
Posted:
Thu Jan 19, 2006 8:29 pm |
|
rwsNuke 7.6 2.0.2 - phpBB 2.19
The text surrounding the forum avatar does not have br tags apperantly.
Any suggestiongs on what I need to do to fix this?
Thanks, |
_________________ http://www.psy-center.com |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Raven
Site Admin/Owner
![](modules/Forums/images/avatars/45030c033f18773153cd2.gif)
Joined: Aug 27, 2002
Posts: 17088
|
Posted:
Thu Jan 19, 2006 10:58 pm |
|
More left over code. I apologize about this and promise you I will have this all cleaned up in the next release!
In themes/fisubice/forums/viewtopic_body.tpl
FIND
Code:<!-- td valign="top" class="{postrow.ROW_CLASS}" rowspan="2"><span class="name"><a name="{postrow.U_POST_ID}"></a><strong>{postrow.POSTER_NAME}</strong></span><br />
<span class="postdetails">{postrow.POSTER_RANK}<br />
{postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}<br /><br />
{postrow.POSTER_JOINED}<br />
{postrow.POSTER_POSTS}<br />
{postrow.POSTER_FROM}</span><br />
<img src="themes/fisubice/forums/images/spacer.gif" alt="" width="150" height="1" />
</td -->
|
CHANGE TO
Code:<td valign="top" class="{postrow.ROW_CLASS}" rowspan="2"><span class="name"><a name="{postrow.U_POST_ID}"></a><strong>{postrow.POSTER_NAME}</strong></span><br />
<span class="postdetails">{postrow.POSTER_RANK}<br />
{postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}<br /><br />
{postrow.POSTER_JOINED}<br />
{postrow.POSTER_POSTS}<br />
{postrow.POSTER_FROM}</span><br />
<img src="themes/fisubice/forums/images/spacer.gif" alt="" width="150" height="1" />
</td>
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Darrell3831
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Fri Jan 20, 2006 4:14 am |
|
Thanks Raven!
I was able to get it working from that.
There is another table row directly below the one mentioned. Once you un-comment the one listed above you need to immediately comment out the one below it.
In not, you'll have two table rows. One correct and one like my example image. Both side by side.
Thanks again, Works now!
Darrell |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Raven
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Fri Jan 20, 2006 4:47 am |
|
I don't find any other commented rows. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Darrell3831
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Fri Jan 20, 2006 4:04 pm |
|
My version came like this right out of the archive.
Code:<!-- BEGIN postrow -->
<tr>
<!-- td valign="top" class="{postrow.ROW_CLASS}" rowspan="2"><span class="name"><a name="{postrow.U_POST_ID}"></a><strong>{postrow.POSTER_NAME}</strong></span><br />
<span class="postdetails">{postrow.POSTER_RANK}<br />
{postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}<br /><br />
{postrow.POSTER_JOINED}<br />
{postrow.POSTER_POSTS}<br />
{postrow.POSTER_FROM}</span><br />
<img src="themes/fisubice/forums/images/spacer.gif" alt="" width="150" height="1" />
</td -->
<td rowspan="2" valign="top" class="{postrow.ROW_CLASS}"><span class="name"><a name="{postrow.U_POST_ID}"></a><b>{postrow.POSTER_NAME}</b></span><br /><span class="postdetails">{postrow.POSTER_RANK}{postrow.H_BR_0}{postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}{postrow.H_BR_1}{postrow.H_BR_2}{postrow.POSTER_JOINED}{postrow.H_BR_3}{postrow.POSTER_POSTS}{postrow.H_BR_4}{postrow.POSTER_FROM}</span>{postrow.H_BR_5}<img src="themes/fisubice/forums/images/spacer.gif" alt="" width="150" height="1" />
</td>
|
If you take the !-- and the -- away from the first td tag then you'll end up with very similar blocks of code.
These two blocks of code cause the td to be duplicated twice in a row.
Once I realized it, I just deleted the second td tag. The are slightly different. Should I not have done that??
Only registered users can see links on this board! Get registered or login!
For me it's working now. At least I think it is..
Thanks,
Darrell |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Guardian2003
Site Admin
![](modules/Forums/images/avatars/125904890252d880f79f312.png)
Joined: Aug 28, 2003
Posts: 6799
Location: Ha Noi, Viet Nam
|
Posted:
Fri Jan 20, 2006 4:55 pm |
|
Im not sure which of the two very similar sets of code within those duplicat TD tags we should be using but here is what I'm currently using with additional br tags
Code:
<!-- BEGIN postrow -->
<tr>
<!-- TD no longer required ?? -->
<!--td> valign="top" class="{postrow.ROW_CLASS}" rowspan="2"><span class="name"><a name="{postrow.U_POST_ID}"></a><strong>
{postrow.POSTER_NAME}</strong></span><br />
<span class="postdetails">{postrow.POSTER_RANK}<br />
{postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}<br /><br />
{postrow.POSTER_JOINED}<br />
{postrow.POSTER_POSTS}<br />
{postrow.POSTER_FROM}</span><br />
<img src="themes/fisubice/forums/images/spacer.gif" alt="" width="150" height="1" />
</td -->
<!-- end old TD code -->
<! replacement TD code for above -->
<td rowspan="2" valign="top" class="{postrow.ROW_CLASS}"><span class="name"><a name="{postrow.U_POST_ID}"></a><b>
{postrow.POSTER_NAME}</b></span><br />
<span class="postdetails">{postrow.POSTER_RANK}<br />
{postrow.H_BR_0}{postrow.RANK_IMAGE}<br />
{postrow.POSTER_AVATAR}{postrow.H_BR_1}<br /><br />
{postrow.H_BR_2}{postrow.POSTER_JOINED}<br />
{postrow.H_BR_3}{postrow.POSTER_POSTS}<br />
{postrow.H_BR_4}{postrow.POSTER_FROM}</span><br />
{postrow.H_BR_5}<img src="themes/fisubice/forums/images/spacer.gif" alt="" width="150" height="1" />
</td>
<!-- end replacement code -->
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Darrell3831
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Fri Jan 20, 2006 5:13 pm |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Raven
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Fri Jan 20, 2006 8:20 pm |
|
I don't know where/how the different code is being introduced. I will go over the theme again, but you saw the code I have. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
bfnuke
Hangin' Around
![](modules/Forums/images/avatars/0c9f947943e3b0e59eb21.jpg)
Joined: Feb 01, 2006
Posts: 43
|
Posted:
Fri Feb 03, 2006 1:36 pm |
|
Just as a quick comment. I thinkthere needs to be a <br /> between teh rank_image and teh poster_avatar in Raven's version... Looks like it is missing, even though it displays correctly. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Guardian2003
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Fri Feb 03, 2006 1:58 pm |
|
I already posted the fix for this above (4 posts up) |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
bfnuke
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Fri Feb 03, 2006 3:15 pm |
|
I see that but yours also has other things in there like this:
What are those for? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Guardian2003
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Fri Feb 03, 2006 4:00 pm |
|
I never got around to investigating that - it may be some future planned forum enhancement or part of some Groups system.
I does need further investigation, so thanks for the reminder but that code will work without any problems. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Guardian2003
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Fri Feb 03, 2006 4:15 pm |
|
Oops, I never noticed that Raven actually posted a fix too so maybe his is the correct one. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
bfnuke
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat Feb 04, 2006 4:19 am |
|
And Raven's fix is missing the <br /> Who knows. All I know is I fixed mine and it looks like this:
Code:
<td valign="top" class="{postrow.ROW_CLASS}" rowspan="2"><span class="name"><a name="{postrow.U_POST_ID}"></a><strong>{postrow.POSTER_NAME}</strong></span><br />
<span class="postdetails">{postrow.POSTER_RANK}<br />
{postrow.RANK_IMAGE}<br />
{postrow.POSTER_AVATAR}<br /><br />
{postrow.POSTER_JOINED}<br />
{postrow.POSTER_POSTS}<br />
{postrow.POSTER_FROM}</span><br />
<img src="themes/fisubice/forums/images/spacer.gif" alt="" width="150" height="1" />
</td>
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Raven
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat Feb 04, 2006 5:10 am |
|
This has allbeen fixed in the next release. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Nomad
Client
![](modules/Forums/images/avatars/Animaniacs/Animaniacs_-_Brain_2.gif)
Joined: Jan 21, 2006
Posts: 87
Location: Arizona
|
Posted:
Fri Apr 28, 2006 4:46 pm |
|
To Clarify this.....
1. I applied Raven's Fix
2. But I also had to delete the next table statement that came immediatly after that.
Then it looked pretty!
So everybody was right !
![Wave](modules/Forums/images/smiles/mexicanwave.gif) |
_________________ Nomad!~! |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Guardian2003
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat Apr 29, 2006 12:02 am |
|
That is correct, you would need to comment out or delete the other one.
This issue has been fixed in RN. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
|