我有TYPO3页面,当我正在研究结构时,我的眼睛正在流血......
<div id="c6880" class="csc-default">...</div>
<div id="c6924" class="csc-default">...</div>
<div id="c6336" class="csc-default">...</div>
<div id="c6066" class="csc-default">...</div>
<div id="c6058" class="csc-default">...</div>
有可能更改ID的名称或添加到“csc-default”,例如类“col-md-12”?
答案 0 :(得分:0)
这些id值对应于页面上内容元素的ID。如果您使用TYPO3&lt; = 7.6或TYPO3 7.6与css_styled_content,您可以转到Web&gt;模板和TypoScript对象浏览器。在搜索字段中输入 if (btnStart.Click == true)
{
btnStart.Visibility = ViewStates.Gone;
btnEnd.Visibility = ViewStates.Visible;
Stopwatch.Start() = txtStopwatch.Text;
}
else
{
btnStart.Visibility = ViewStates.Visible;
btnEnd.Visibility = ViewStates.Gone;
Stopwatch.Start();
}
。您将看到它在TypoScript中的定义位置。您可以按照自己的意愿取消或更改它。
如果将TYPO3 7.6与fluid_styled_content一起使用,则会更复杂:您需要使用自己的流体模板覆盖它(在fluid_styled_content系统扩展中搜索相同的字符串)。
一般来说,不值得花时间。保持原样。
答案 1 :(得分:-1)
使用jQuery简单:
$(document).ready(function () {
$('.csc-default').addClass('col-md-12');
});
如果遗漏,请不要忘记包含jQuery库。