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)
Updated by Sebastian Kurfuerst almost 19 years ago
Hi Alex,
please update to 3.8.1 and check if the problem still exists. It might be that it is solved by Issue 1115.
Greets, Sebastian
Updated by Sebastian Kurfuerst almost 19 years ago
I confirmed that it is fixed in 3.8.1.
Greets, Sebastian
Actions