在线更改Sharepoint背景

时间:2019-10-29 13:37:21

标签: sharepoint sharepoint-online sharepoint-designer

我想知道如何使用用户名将backgroung共享点更改为自定义背景。

1 个答案:

答案 0 :(得分:0)

我建议您提供屏幕截图以供进一步研究。

如果要在列表视图中自定义用户名的背景,我们可以使用以下CSS在经典UI中实现。我们可以使用SharePoint Designer将样式添加到母版页中。

<style>
.ms-vb-user{
    background-color:green;
}
</style>

对于现代UI,我们需要使用SPFx应用程序定制程序注入自定义级联样式表(CSS)来实现它。下面的解决方案供您参考。

SPFx Applications Customiser CSS Injection