Adding image within the banner?

This is a great feature!

Do you know if/how it is possible to add an image within the banner?

something like this:

1 Like

Welcome, @Michele_Butturini :wave:

It’s done fairly easily by adding your image file and a few lines of CSS to your theme or a new custom component:

.welcome-wrapper {
    flex-wrap: wrap;
    &:before {
        content: "";
        background: url($welcome-banner-image);
        height: 100px;
        width: 100%;
    }
}

3 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.