MyBB Community Forums

Full Version: How do I align this?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to align the "IP Address: Logged" in the right.
I have already tried to edit the postbit_iplogged_show and postbit_iplogged_hiden with the <span style="align:right"></span> but it didn't work.

How do I do this?

Thank you.
(2009-12-15, 12:28 PM)Skiilz Wrote: [ -> ]I want to align the "IP Address: Logged" in the right.
I have already tried to edit the postbit_iplogged_show and postbit_iplogged_hiden with the <span style="align:right"></span> but it didn't work.

How do I do this?

Thank you.

That is cos you are trying to edit the wrong template with the wrong code.

Try to edit the postbit template instead. Find:

<div class="post_meta" id="post_meta_{$post['pid']}">
				{$post['iplogged']}
				</div>

and change that too:

<div class="post_meta" style="float:right;" id="post_meta_{$post['pid']}">
				{$post['iplogged']}
				</div>

Or you can use the style="text-align:right;" instead of style="float:right;"
That would work as well.

Here is the result.
Thank you.
Worked like a charm!
No problem, glad to to have been of help.