MyBB Community Forums

Full Version: Post image width affects smilies
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Well I'm new to MyBB but perhaps you could append an ID to that img tag specifically and only to however MyBB insets the smilies when parsing. A shot in the dark.

For example.
Let's say you have
<div id="header">
floating content in 2 columns
</div><!-- end header -->
<div id="body">
multiple content with divs of width=100%
</div><!-- end body -->
Notice header and body are not wrapped in anything that defines boundaries.
I think of it as an upside down tree.. with the roots and truck defined at the very begining..
so what I do.. is define my layout to contain it's content within it's own world by wrapping all parts in at least one master div.
And to this master div I apply my max min widths. Everything else after that, provided I don't go from class to ID but rather ID down to class, will be contained within my defined world of existance for the content.. ideally.. some wierd crap can still happen mind you. But for the most part this is what I do.

So I do stuff like this:
<div id="displayall">
<div id="displaycontent">
<div id="header">
floating content in 2 columns with classes
</div><!-- end header -->
<div id="body">
multiple content with divs of width=100% with classes
</div><!-- end body -->
...... footer divs etc
</div><!-- end displaycontent -->
</div><!-- end displayall -->

Give this work style a try, it might solve your formating challenge.
Pages: 1 2