¿Agregar imagen dentro del banner?

¡Esta es una gran característica!

¿Sabes si/cómo es posible agregar una imagen dentro del banner?

algo como esto:

1 me gusta

Bienvenido, @Michele_Butturini :wave:

Se hace con bastante facilidad añadiendo tu archivo de imagen y unas pocas líneas de CSS a tu tema o a un nuevo componente personalizado:

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

3 Me gusta

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