Actions
Bug #15345
closedIMGTEXT table align problem with Internet Explorer
Start date:
2006-01-03
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
3.8.0
PHP Version:
5
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
in reference to tslib/class.tslib_content.php and typo3/sysext/cms/tslib/class.tslib_content.php
line 1071
$table_align = (($i==16) ? 'align="'.$align.'"' : '');
this causes layout problems in Internet Explorer for Text w/Image. The image doesn't float inside the text, but rather sits on top. It's a IE bug with aligned tables. It is easily fixed using css and a float setting. See below:
$table_align = (($i==16) ? 'style="float: '.$align.'"' : '');
(issue imported from #M2159)
Actions