MyBB Community Forums

Full Version: Post Icons Centered Help!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: 2ql48ya.png]

I don't like how these are aligned, I want to center them.

My forum url is: http://quickscope.net
.thread_legend dd in global.css
Adjust the margin.
What do I edit to do so?
Do you have this in your global.css?


.thread_legend, .thread_legend dd {
	margin: 0;
	padding: 0;
}

.thread_legend dd {
	padding-bottom: 4px;
	margin-right: 15px;
}
Yes. Idk what to edit though.
Is this how you want it:

[Image: Untitled-46.png]

Or the other way like in 2 columns? Smile
That would be nice, I originally just wanted it to be more centered.
Alright then here is what you do:

ACP -> Templates & Style -> Themes -> Your Theme -> Global.css:

Find:
.thread_legend, .thread_legend dd {
    margin: 0;
    padding: 0;
}

and add this:
float: left;

So in conclusion, it should look like this:
.thread_legend, .thread_legend dd {
    float: left;
    margin: 0;
    padding: 0;
}

That's All & you will get the how it if aligned in the picture above ;]
Thanks a lot man!