这是一个很棒的功能!
您知道是否/如何可以在横幅中添加图片吗?
类似这样:
通过将您的图片文件和几行 CSS 添加到您的主题或新的自定义组件中,可以相对轻松地完成此操作:
.welcome-wrapper {
flex-wrap: wrap;
&:before {
content: "";
background: url($welcome-banner-image);
height: 100px;
width: 100%;
}
}
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.