cclaerhout
Well-known member
I know it's not a bug, but it's really annoying. Before (with vB) the align bbcodes were using these commands:
Now it's using the text-align css command
The problem?
It's working with text, even images, but if you created a bbcode using for example that very simple code:
Then, the caption and image will be align center inside the div container of 150 pixels, but if this div container is wrapped inside the XenForo [ center ] bbcode, it won't be center inside the post as it used to be with a center bbcode using html "align=center".
HTML:
<div align="left">my code</div>
HTML:
<div align="center">my code</div>
HTML:
<div align="right">my code</div>
Now it's using the text-align css command
HTML:
<div style="text-align:left">my code</div>
HTML:
<div style="text-align:center">my code</div>
HTML:
<div style="text-align:right">my code</div>
The problem?
It's working with text, even images, but if you created a bbcode using for example that very simple code:
HTML:
<div style="text-align:center; width:150px">
<img src="link_to_image" style="width:150px" /><br />
<span>Image Caption</span>
</div>
Then, the caption and image will be align center inside the div container of 150 pixels, but if this div container is wrapped inside the XenForo [ center ] bbcode, it won't be center inside the post as it used to be with a center bbcode using html "align=center".