2013-11-21 52 views
0

我正在编辑typo3中的模板。我在添加内容到页脚时遇到问题。在我的index.html我的页脚是这样的:typo3 - 将内容添加到页脚

<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是我在本网站工作之初的模板的一部分。我很难找到放置该内容的地方。在“footerCenter”中,我的页面已经有Menu。但是,在typo3后台我看不到它在哪里。

任何人都可以帮助我吗?Thx

回答

0

欢迎来到TYPO3!你将不得不阅读它的工作原理/配置,否则你很快就会遇到下一个问题。

要部分回答您的问题:使用Typoscript/css_styled_content将您在后端编辑的内容路由到模板。有几种方法可以做到这一点,下面是最简单但也是最老派方式(“标记”)的示例:Implement HTML template in Typo3, content don't work or my mistake