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
Updated by Mathias Schreiber almost 10 years ago
- Status changed from New to Needs Feedback
- Assignee set to Mathias Schreiber
- Target version set to 7.2 (Frontend)
- Is Regression set to No
Hi,
is this still an issue?
Updated by Riccardo De Contardi almost 10 years ago
- File Cattura.PNG Cattura.PNG added
Seems solved in 6.2.x.
Attached: screenshot of the demo site, with added a Text with Image content element(image alignment: above center)
Updated by Mathias Schreiber almost 10 years ago
- Status changed from Needs Feedback to Closed
Actions