MyBB Community Forums
How to center align this? - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Community Archive (https://community.mybb.com/forum-106.html)
+--- Forum: Archived Forums (https://community.mybb.com/forum-143.html)
+---- Forum: Archived Development and Support (https://community.mybb.com/forum-155.html)
+----- Forum: MyBB 1.6 (https://community.mybb.com/forum-138.html)
+------ Forum: 1.6 General Support (https://community.mybb.com/forum-127.html)
+------ Thread: How to center align this? (/thread-150443.html)



How to center align this? - MikeInToshx - 2014-01-28

Hey guys,

This is probably basic question but I always had trouble aligning divs haha

Ok so, how do I align this to the center..:

[attachment=30932]

This is my code:

<img src="images/twist-sd/home.png"></img><span class="active" style="padding-bottom: 10px; margin-left: 5px">COMPUTER HELP FORUM</span>



RE: How to center align this? - Destroy666 - 2014-01-28

Try:
<img src="images/twist-sd/home.png" style="margin-bottom: 5px; vertical-align: middle;" /><span class="active" style="padding-bottom: 10px; margin-left: 5px">COMPUTER HELP FORUM</span>



RE: How to center align this? - MikeInToshx - 2014-01-28

Got it. Thx.


RE: How to center align this? - marcus123 - 2014-01-28

In global.css find .navigation and add:

text-align: center;
never mind this wouldn't work because I didn't know you were referring to vertical alignment Wink


RE: How to center align this? - MikeInToshx - 2014-01-28

It's fixed already Big Grin Thx.