user2310852
user2310852

Reputation: 1674

IE8 don't show <figure> Tag although html5shiv

my IE8 doesn't show images inner the figure tag.

TYPO3 Installation 6.1.x DOCTYPE HTML5 css styled content (latest)

Frontend: Text & Image will shown as

<div class="csc-textpic-imagewrap">
<div class="csc-textpic-center-outer">
<div class="csc-textpic-center-inner">
  <figure class="csc-textpic-image csc-textpic-last">
      <img height="308" width="828" alt="" src="fileadmin/media/image.JPG">
 </figure>
</div>
</div>
</div>

I 've included HTML5shiv Script - nothing happens .. then I tries to unwrap the figure element with jQuery - nothing happens

Has anyone an idea how I can show my image wrapped with

Upvotes: 1

Views: 2230

Answers (3)

Bharat Parmar
Bharat Parmar

Reputation: 1880

just set this in config typoscript

 doctype = html5

Upvotes: 0

user2310852
user2310852

Reputation: 1674

it was a responsive big

img {
  max-width: auto;
  width: 100%;
  /* and for IE 8 */
  width: auto\9;
}

That's it Damn.!

Upvotes: 1

Wipster
Wipster

Reputation: 1570

I had the same problem:

tt_content.image.20.rendering.singleNoCaption.singleStdWrap.wrap.override >
tt_content.image.20.rendering.noCaption.singleStdWrap.wrap.override >

Or instead of deleting it, replace it with whatever html you like.

Upvotes: 0

Related Questions