Resa
Resa

Reputation: 11

Get rid of "csc-frame" div wrap in TYPO3

Here is my code:

    lib.navigation{
         10 = RECORDS
            10 {
                 source = uid
                 tables = tt_content
            }
    }

Here I'm just creating a menu through content element and I wanted to remove the default div with class=csc-frame csc-frame-frame1 from the rendered content

I used like this:

lib.navigation{
     10 = RECORDS
        10 {
             conf.tt_content.stdWrap.innerWrap.cObject.default = TEXT
             source = uid
             tables = tt_content
        }
}

but this will remove only csc_default div.

Upvotes: 1

Views: 1474

Answers (1)

Primoz
Primoz

Reputation: 626

This might do the trick. Make sure to include it before the navigation definition.

tt_content.stdWrap.innerWrap.cObject.default >

Upvotes: 1

Related Questions