0

I have two markers. Content and Article - both take use of CSC and it does work well. NOW I want to use a <li> tag instead of a <div class="csc-header"> tag in the Content subpart marker. How do I modify it without the need to change the WHOLE css styled content for ALL subpart markers?

4

1 回答 1

1

我猜,您正在使用这样的语句:

CONTENT_SUBPART_MARKER < styles.content.get

要解决您的问题,您只需要了解它是如何工作的(看看“ 45 分钟内的 TypoScript ”,它有不同的语言版本)。

styles.content.get 是一个 CONTENT 对象。渲染定义是这样设置的

CONTENT_SUBPART_MARKER = CONTENT
CONTENT_SUBPART_MARKER {
  table = tt_content
  ... some more stuff ...
  renderObj < tt_content
}

如果未定义 renderObj,renderObj < "TABLENAME"则默认设置。

因此,您现在可以通过 TypoScript Object-Browser 查找要更改的设置(在 tt_content.text... 中的 fe)并将此更改添加到您的 renderObj。在此示例中,所有内容对象都将在没有标题的情况下呈现:

CONTENT_SUBPART_MARKER = CONTENT
CONTENT_SUBPART_MARKER {
  table = tt_content
  ... some more stuff ...
  renderObj < tt_content
  renderObj.text.10 >
}

要获得更具体的帮助,您需要提供更具体的信息。

于 2012-01-30T20:15:00.173 回答