Actions
Bug #45947
closedCenter alignment of pictures does not work in IE8
Start date:
2013-03-01
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
In IE8 pictures with an alignment of center are positioned at the right side.
This can be fixed with this modifications in the default css:
Replace this:
div.csc-textpic-center .csc-textpic-center-inner {
position: relative;
float: right;
right: -50%;
}
by this:
*div.csc-textpic-center .csc-textpic-center-inner {
position: relative;
float: left;
left: 50%;
}*
This does work in IE 7/8/9 and Firefox. Other Browsers should be checked also.
Files
Actions