inherit
180881
0
Apr 18, 2019 15:19:15 GMT -8
(( Aurora !!
68
June 2012
auroraruby
|
Post by (( Aurora !! on Mar 14, 2013 17:19:48 GMT -8
I have no idea what I did but for some reason when using one of the themes on a site I am co-admin on the signatures are appearing above the posts instead of below them. I know I had the problem before but I have no idea how I fixed it and I cannot find anything on here to tell me either. The site in question is Tyler Bay, and it is the Dark theme if you need to know which theme it is. Thank you.
|
|
inherit
\o/ ^o^ /o_ /o\
16464
0
Jul 22, 2024 13:57:10 GMT -8
pawl
29,621
November 2003
pollo
Pink Stars
|
Post by pawl on Mar 14, 2013 17:37:11 GMT -8
Could you possibly post the 'Post List' template for that theme? =]
|
|
inherit
180881
0
Apr 18, 2019 15:19:15 GMT -8
(( Aurora !!
68
June 2012
auroraruby
|
Post by (( Aurora !! on Mar 14, 2013 17:42:34 GMT -8
Here it is:{foreach $[post]} <tr id="$[post.content_id]" class="$[post.content_class]{if $[post.even]} even{/if}{if $[viewing_recent_posts]} recent{/if}"> <td class="$[post.unblocked_class]"> <table role="grid"> <tr> <td class="left-panel" rowspan="2"> $[post.created_by_user.miniprofile] </td> <td class="content"> <div class="content-head ui-helper-clearfix"> <div class="info"> <span class="thread-link">$[post.thread]</span> <span class="date">$[post.date]</span> {if $[post.how_posted]} <span class="post-method">via $[post.how_posted]</span> {/if} $[post.likes] </div> <div class="controls"> $[post.quote_button] $[post.edit_button] $[post.likes.button] $[post.select_options] </div> </div> <h3 class="title aria-hidden">Post by $[post.created_by_user.name] on $[post.date]</h3> <div class="message">$[post.message]</div> </td> </tr> <tr> {if $[post.created_by_user.signature]} <div class="signature">$[post.created_by_user.signature]</div> {/if} </td> </tr> </table> </td> {if $[post.is_blocked]} <td class="$[post.blocked_class] content center"> <div class="message note pad-bottom">This post is hidden</div> $[post.display_blocked_post_button] </td> {/if} </tr> {/foreach} {if !$[post]} <tr class="last"><td class="last center" colspan="1">No posts were found.</td></tr> {/if}
|
|
inherit
\o/ ^o^ /o_ /o\
16464
0
Jul 22, 2024 13:57:10 GMT -8
pawl
29,621
November 2003
pollo
Pink Stars
|
Post by pawl on Mar 14, 2013 17:45:34 GMT -8
According to what you've posted the signature should be below the post. Is that definitely for the theme in question? When viewing the template there is a dropdown box to select the theme. =]
|
|
inherit
180881
0
Apr 18, 2019 15:19:15 GMT -8
(( Aurora !!
68
June 2012
auroraruby
|
Post by (( Aurora !! on Mar 14, 2013 17:48:16 GMT -8
Yes. I will change themes and go back in and try again, but it tells me that it is for the right theme. This is definitely from the right theme now.{foreach $[post]} <tr id="$[post.content_id]" class="$[post.content_class]{if $[post.even]} even{/if}{if $[viewing_recent_posts]} recent{/if}"> <td class="$[post.unblocked_class]"> <table role="grid"> <tr> <td class="left-panel" rowspan="2"> $[post.created_by_user.miniprofile] </td> <td class="content"> <div class="content-head ui-helper-clearfix"> <div class="info"> <span class="thread-link">$[post.thread]</span> <span class="date">$[post.date]</span> {if $[post.how_posted]} <span class="post-method">via $[post.how_posted]</span> {/if} $[post.likes] </div> <div class="controls"> $[post.quote_button] $[post.edit_button] $[post.likes.button] $[post.select_options] </div> </div> <h3 class="title aria-hidden">Post by $[post.created_by_user.name] on $[post.date]</h3> <div class="message">$[post.message]</div> </td> </tr> <tr> {if $[post.created_by_user.signature]} <div class="signature">$[post.created_by_user.signature]</div> {/if} </td> </tr> </table> </td> {if $[post.is_blocked]} <td class="$[post.blocked_class] content center"> <div class="message note pad-bottom">This post is hidden</div> $[post.display_blocked_post_button] </td> {/if} </tr> {/foreach} {if !$[post]} <tr class="last"><td class="last center" colspan="1">No posts were found.</td></tr> {/if}
Could it be me needing to clear my cache for my browser to register what way it is meant to be?
|
|
inherit
\o/ ^o^ /o_ /o\
16464
0
Jul 22, 2024 13:57:10 GMT -8
pawl
29,621
November 2003
pollo
Pink Stars
|
Post by pawl on Mar 14, 2013 17:55:38 GMT -8
Think I might have spotted the problem (should have been evident to me the first time around).
Look for this part of the template; <tr> {if $[post.created_by_user.signature]} <div class="signature">$[post.created_by_user.signature]</div> {/if} </td> </tr>
Try replacing it with this; <tr> <td> {if $[post.created_by_user.signature]} <div class="signature">$[post.created_by_user.signature]</div> {/if} </td> </tr>
Can't guarantee anything, but that might fix things. =]
|
|
inherit
180881
0
Apr 18, 2019 15:19:15 GMT -8
(( Aurora !!
68
June 2012
auroraruby
|
Post by (( Aurora !! on Mar 14, 2013 17:58:48 GMT -8
It worked! Thank you .
|
|
inherit
\o/ ^o^ /o_ /o\
16464
0
Jul 22, 2024 13:57:10 GMT -8
pawl
29,621
November 2003
pollo
Pink Stars
|
Post by pawl on Mar 14, 2013 18:02:52 GMT -8
No worries. =]
For what it's worth, you were missing an opening <td> When you can, always check to make sure that any open tags (like a <td>) are closed, and any closing tags (like a </td>) have been opened, especially when making edits. Missing one or the other can cause no end of hassle. =]
|
|
inherit
180881
0
Apr 18, 2019 15:19:15 GMT -8
(( Aurora !!
68
June 2012
auroraruby
|
Post by (( Aurora !! on Mar 14, 2013 18:05:05 GMT -8
Yes I noticed that when I added it in. Annoying things. I would have had no idea where to look to see where the error was. That does make sense that all you need is to be missing one for it to cause problems. Thank you again.
|
|