1

谁能帮我更改phpbb论坛的页脚和页眉..

4

3 回答 3

6

对于 PHPBB 版本 3.0.x,页眉现在位于“/styles/[stylename]/template/overall_header.html”,页脚位于“/styles/[stylename]/template/overall_footer.html”。

皮特

于 2011-11-28T20:15:13.273 回答
2

您需要相应地找到 /templates/name-of-style-you-use/overall_header.tpl 和 /templates/name-of-style-you-use/overall_footer.tpl。您可以轻松地编辑它们。

于 2010-12-27T09:37:01.837 回答
0

好吧,您也可以将以下行添加到您的styles/<theme>/template/ajax.js文件中:

var copy = $('.copyright').html(); var link = copy.split("<br>").pop(); $('.copyright').html(link);

或者从页脚中删除所有内容(包括 acp 链接)。再次在您的 javascript 文件中使用一种线性解决方案:

$('.copyright').css('display','none');

问候, 梅尔罗伊

于 2017-12-23T03:39:11.003 回答