MyBB Community Forums

Full Version: line break issue IE7
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
does this look right (i changed the width to 98%)

width:98%;
align: center;
text-align: center; /* IE 5 fix */
line-height: 1.4
Dale Hay Wrote:I've just checked in IE6 (as IE7 is a bag of you-know-what) and yeah it's the same too it's not parsing the br tags, yet in Firefox it is. Smile

but it's fine in this board/theme , not in my theme
Ok, wait. I did some more checking and when I looked at the DOM source and compared the <br>'s properties between MyBB's and Your's the only difference I see is: 'Property: letterSpacing - Value: -1';

So I think thats what is screwing it up. Perhaps if you could remove that from your css or change the value from -1 to 1 and see if it works again?
where exactly do i find that ?
In your CSS Theme, in your additional css find:

body{
margin: 0px;
letter-spacing: -1px;
}

and replace with

body{
margin: 0px;
}
yea just got it when you posted. I actually removed the body reference altogether.

it looks like that has fixed it.

can you please test it again for me just in case my eyes are deceiving me
Fixed for me too Smile Moving this into general support
thanks for your help guys.

fantastic support.

i can cross another off the list.

cheers Smile
CSS problem, the major and only issue in IE 7.( my own comments)
rendering of the mycode icons in post and reply is also an outstanding problem with IE7 which will be fixed in next issue.
Pages: 1 2