我正在编辑typo3中的模板。我在向页脚添加内容时遇到问题。在我的index.html中,我的页脚看起来像这样:
<div id="footer">
<div id="footerLeft"></div>
<ul id="footerCenter"> </ul>
<div id="footerRight"> </div>
</div>
我设法将背景图片放到我的页脚,并将其粘贴在我的页面底部的css中:
#footer{
width:100%;
height:292px;
background:url(../img/prechod_stranka-paticka1920x145.png) no-repeat top center;
background-color:#4e4b47;
position:static;
bottom:0px;
}
现在,我想在div中添加一些内容(footerLeft,footerCenter,footerRight)。从我在本网站开始工作开始,这些div就是模板的一部分。我很难找到放置内容的地方。在&#34; footerCenter&#34;中,我的页面已有菜单。然而,在typo3后端我无法看到它在哪里。
任何人都可以帮助我吗?Thx
答案 0 :(得分:1)
欢迎来到TYPO3!您将不得不阅读它的工作原理/配置,否则您很快就会遇到下一个问题。
要部分回答您的问题:使用Typoscript / css_styled_content将您在后端编辑的内容转发到模板。有几种方法可以做到这一点,这里是最简单但也是最老式的方式(“标记”)的例子:Implement HTML template in Typo3, content don't work or my mistake