Paolito75
Paolito75

Reputation: 568

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 !

Upvotes: 0

Views: 186

Answers (1)

Paolito75
Paolito75

Reputation: 568

SOLVED ! Thanks to this stack overflow topic.

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

Upvotes: 0

Related Questions