Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Check the TypoScript object browser. There you will find the object <code>tt_content</code>, which contains the rendering definitions for content elements. The rendering definition for images is found at <code>tt_content.image.20</code>, for example</p> <pre><code>tt_content.image.20.imageStdWrap.dataWrap = &lt;div class="csc-textpic-imagewrap" style="width:{register:totalwidth}px;"&gt; | &lt;/div&gt; </code></pre> <p>The default definitions given there are usually provided by the static TypoScript of CSS-styled-content. You can overwrite them in your own TS, but when updating to a newer TYPO3-version, the default template may change, which could result in additional wrappers.</p> <p><strong>Update</strong></p> <p>Most content rendering in TYPO3 is defined in the TypoScript object <code>tt_content</code>. You can browse all TS-objects that will be used on a page by selecting the "Template" module and the page in question, and then choose "TypoScript Object Browser" in the selectbox at the top of the window. To understand what that stuff means, knowledge of TypoScript is necessary (<a href="http://wiki.typo3.org/Ts45min" rel="nofollow">Tutorial</a>, <a href="http://docs.typo3.org/typo3cms/TyposcriptReference/" rel="nofollow">Reference</a>).</p> <p>You can add your own TypoScript, which may override existing settings. You can do that in the Template-module too, but usually this is done by creating a file containing the script somewhere in the fileadmin folder and including it from the Template module.</p> <p>The above enables you to edit the markup of the page. (Additional) CSS is usually defined in external files, that are included by a PAGE object (see the reference about that).</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload