Search code examples
typo3typoscripttypo3-6.2.xtx-gridelements

TYPO3/Typoscript : grid element undesirable anchors


On my TYPO3 website (v6.2) I use CE backend Layout to allow my teammates to insert content easily. Problem : tag are automatically generated and break all my layout (seems like html anchors to inserted content). This is what it looks like :

<ul id="timeline">

    <a id="c3837"></a>
    <li> CONTENT HERE</li>

    <a id="c3842"></a>
    <li> CONTENT HERE</li>

    <a id="c3845"></a>
    <li> CONTENT HERE</li>

</ul>

I tried several fix to remove them :

tt_content.stdWrap.innerWrap.cObject.default >

tt_content.stdWrap.innerWrap >

tt_content.stdWrap.innerWrap.cObject.default.10.cObject.default.value =

... with no success. Do you have any idea to solve this issue ? Thanks !


Solution

  • SOLVED ! Thanks to this stack overflow topic.

    I tried "tt_content.stdWrap.prepend >" and it works.