How to add Section Frame and wrap section frame in TYPO3 backend


 
Add option in “Indentation and Frames”

If you want to add option in “Indentation and Frames” (section frame) then first you have to set TypoScript Configuration in page edit porperty

TCEFORM.tt_content.section_frame {
     addItems.101 = Contact Tabs
}  

After set above TypoScript Configuration in page edit porperty. It will display in your “Indentation and Frames”
It will look like in below image.

Section_frame

Section_frame

If you want to wrap that section element with your HTML then you have to set below TypoScript

tt_content.stdWrap.innerWrap.cObject = CASE
tt_content.stdWrap.innerWrap.cObject {
      key.field = section_frame
      101 = TEXT
      101.value = <div class="contact-tabs">|</div>    
} 

**Note : 101 is array key. you have to set common in page edit property and in TypoScript Configuration

If you have any queries, please do not hesitate to contact me at Jainish Senjaliya