phpbb特定论坛页面样式

发布于 2024-08-29 18:45:02 字数 166 浏览 2 评论 0原文

我在客户的网站上使用 phpbb,客户要求每个不同的论坛页面具有不同的背景颜色。

这样的功能没有内置到 phpbb 中(据我所知),那么我应该如何去做呢?可以直接修改phpbb的代码吗?

我的另一个想法是使用 js 条件语句,但由于论坛页面上的唯一区别是页面标题,我不知道如何格式化它。

I am using phpbb on a site for a client, and the client has requested that each different forum page have a different background color.

Such functionality is not built into phpbb (from what I can tell), so how should I go about doing this? Can I modify the code of phpbb directly?

My other thought was to use a js conditional statement, but seeing as the only difference on the forums page would be the page title, I don't know how I could format this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

牵强ㄟ 2024-09-05 18:45:02

如果您可以以一种在软件更新时不会中断的方式包含 js,那么最好使用 url 中的论坛 id?

否则,这是在黑暗中进行的尝试,但请尝试以下操作:

  1. 查找 phpbb 输出 的位置。
  2. 使用 switch/case 语句并根据论坛 ID 输出必要的 css。
  3. 准确记录您所做的更改,并记住,当 phpbb 更新到新版本时,您可能需要再次进行更改。

If you can include a js in a way that won't break when the software is updated then that would be preferable, using the forum id from the url perhaps?

Otherwise, this is a stab in the dark, but try this:

  1. Find where phpbb outputs the <head>
  2. Use a switch/case statement and output the necessary css based on the forum ids.
  3. Document exactly where you made the changes, and remember that you may need to make them again when phpbb is updated to new versions.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文