MyBB Community Forums

Full Version: Colour and Alignment
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I've integrated a website with MyBB and when I add the style code to the forum styles from the website, it changes a few things to the forum. Please check attachment as to what I mean, and also it seems to be aligning text wrong and it looks odd. I can't figure out what the issue is. All I can say is when I take out the integrated site style code from MyBB, it looks as it should.
My guess is there's some CSS applying a fixed width to all label elements. Try to look for it.

However it's hard to tell without properly taking a look at it. Could you please provide the forum URL?
Yup, just like I predicted. This is the relevant piece of CSS:

label{
width:70px;
float:left;
padding:3px 5px 0 0;
color:#59a5bf;
text-align:right;
}

Remove the width property and you should be fine. Smile
You're a bloody genius! :O

Good rep yet again! Big Grin

Thanks!