MyBB Community Forums

Full Version: Adding a space
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

Need some help adding a space between my lastpost text and avatar.

I've tried adding &nbsp; at the end of the <div> but it is ignored.

The code I have now is:

<div style="float: right"><span class="smalltext">{$forum['lp_avatar']}</div>
<a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br />{$lastpost_date} {$lastpost_time}<br />{$lang->by} {$lastpost_profilelink}</span>

Thanks Smile
Use margins, like so:

<div style="float: right; margin-left: 20px">{$forum['lp_avatar']}</div>
<span class="smalltext"><a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br />{$lastpost_date} {$lastpost_time}<br />{$lang->by} {$lastpost_profilelink}</span>

Change 20px to whatever value you want.
(2011-07-31, 01:28 PM)faviouz Wrote: [ -> ]Use margins, like so:

<div style="float: right; margin-left: 20px">{$forum['lp_avatar']}</div>
<span class="smalltext"><a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br />{$lastpost_date} {$lastpost_time}<br />{$lang->by} {$lastpost_profilelink}</span>

Change 20px to whatever value you want.

Thanks so much faviouz Smile and congrats on the promotion to Support Team Big Grin