gpt4 book ai didi

SilverStripe 管理区域覆盖

转载 作者:行者123 更新时间:2023-12-04 13:40:03 24 4
gpt4 key购买 nike

在 SilverStripe 3.1 中,是否可以覆盖显示在左侧 CMS 顶部的 SilverStripe Logo 和 url(而不是替换它)?

最佳答案

在 SilverStripe 3.1 中,我们可以通过使用一些自定义 css 来覆盖 Logo 。

首先我们告诉LeftAndMain通过将其添加到我们的 config.yml 来包含一个额外的 css 文件:

LeftAndMain:
extra_requirements_css:
- mysite/css/leftandmainextracss.css

然后在我们的 leftandmainextracss.css文件我们可以编辑默认 Logo css 以加载我们想要的任何图像:

.cms-logo a {
background: url("../images/new-branding-cms-logo.png") no-repeat left center;
}

我们可以在 config.yml 中设置 url 和 title :

LeftAndMain:
application_link: 'http://www.example.com'
application_name: 'Example'
extra_requirements_css:
- mysite/css/leftandmainextracss.css

这里有一些关于扩展cms接口(interface)的细节: https://docs.silverstripe.org/en/3.1/developer_guides/customising_the_admin_interface/how_tos/extend_cms_interface/

还有这个模块可以更改 CMS 品牌。我没有测试过这个: https://github.com/skorp/Silverstripe--CMSbranding

关于SilverStripe 管理区域覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20078980/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com