MyBB Community Forums

Full Version: Username trailing off theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: 25f4aa296144df0a84a87122b0bdcb0b.png]

And thread titles:
[Image: cd1a40aa397781ee2c8feb813bfce8cc.png]

Anyone know a quick fix? Ahh
Templates > Your theme > Forumbit Templates > forumbit_depth2_forum_lastpost

Should be
<br />{$lastpost_date}<br />{$lang->by} {$lastpost_profilelink}
(2019-06-16, 12:52 AM)iAndrew Wrote: [ -> ]Templates > Your theme > Forumbit Templates > forumbit_depth2_forum_lastpost

Should be
<br />{$lastpost_date}<br />{$lang->by} {$lastpost_profilelink}

This is what I have:
<avatarep_uid_[{$lastpost_data['lastposteruid']}]><span class="small">
	<a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$forum['tpicon']}{$forum['tpprefix']}{$lastpost_subject}</strong></a>
	<br />{$lastpost_date}, by {$lastpost_profilelink}</span>

That worked great. Only problem now is:

[Image: cd1a40aa397781ee2c8feb813bfce8cc.png]

Thanks for your help so far!
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr>
<td valign="top" width="1">
<avatarep_uid_[{$lastpost_data['lastposteruid']}]>
</td>
<td valign="top">
<span class="smalltext">
<a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br />{$lastpost_date}<br />{$lang->by} {$lastpost_profilelink}</span>
</td>
</tr>
</table>
(2019-06-16, 01:34 AM)iAndrew Wrote: [ -> ]<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr>
<td valign="top" width="1">
<avatarep_uid_[{$lastpost_data['lastposteruid']}]>
</td>
<td valign="top">
<span class="smalltext">
<a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br />{$lastpost_date}<br />{$lang->by} {$lastpost_profilelink}</span>
</td>
</tr>
</table>

Thank u. Where can I put this in? Same template?

Looks better!
https://i.gyazo.com/222832499345cbce074a...83186f.png

is there now a way to align to the right? I owe u lots Andrew
(2019-06-16, 01:41 AM)makpaolo Wrote: [ -> ]is there now a way to align to the right? I owe u lots Andrew

Templates > Your theme > Forumbit Templates > forumbit_depth2_forum + forumbit_depth2_cat

<td class="{$bgcolor}" align="right" style="white-space: nowrap">{$lastpost}</td>
(2019-06-16, 02:08 AM)iAndrew Wrote: [ -> ]
(2019-06-16, 01:41 AM)makpaolo Wrote: [ -> ]is there now a way to align to the right? I owe u lots Andrew

Templates > Your theme > Forumbit Templates > forumbit_depth2_forum + forumbit_depth2_cat

<td class="{$bgcolor}" align="right" style="white-space: nowrap">{$lastpost}</td>

Did not seem to work. I dont see any changes (Unless cache problem)

forumbit_depth2_forum
<tr>
<td class="{$bgcolor}" align="right" width="1"><div class="forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"><i class="{$forum['myfontawesomeicon']}"></i></div></td>
<td class="{$bgcolor}">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="{$bgcolor} mobile-hide" align="right" style="white-space: nowrap"> {$threads}{$unapproved['unapproved_threads']} THREADS<br>{$posts}{$unapproved['unapproved_posts']} POSTS<br></td>
<td class="{$bgcolor} mobile-hide" align="right" style="white-space: nowrap">{$lastpost}</td>
</tr>

forumbit depth2 cat
<tr>
<td class="{$bgcolor}" align="right" width="1"><div class="forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"><i class="{$forum['myfontawesomeicon']}"></i></div></td>
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$subforums}</div>
</td>
<td class="{$bgcolor}" align="right" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" align="right" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" align="right" style="white-space: nowrap">{$lastpost}</td>
</tr>
Templates > Your theme > Forumbit Templates > forumbit_depth2_forum_lastpost

Try replace everything with this.
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr>
<td valign="top" width="1">
<avatarep_uid_[{$lastpost_data['lastposteruid']}]>
</td>
<td valign="top" align="right">
<span class="smalltext">
<a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br />{$lastpost_date}<br />{$lang->by} {$lastpost_profilelink}</span>
</td>
</tr>
</table>
(2019-06-16, 02:46 AM)iAndrew Wrote: [ -> ]Templates > Your theme > Forumbit Templates > forumbit_depth2_forum_lastpost

Try replace everything with this.
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr>
<td valign="top" width="1">
<avatarep_uid_[{$lastpost_data['lastposteruid']}]>
</td>
<td valign="top" align="right">
<span class="smalltext">
<a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br />{$lastpost_date}<br />{$lang->by} {$lastpost_profilelink}</span>
</td>
</tr>
</table>

Ur the best thanks