Cambiar el orden de los botones del pie de página del tema

Hola,

Nos gustaría cambiar el orden de los botones del pie de página del tema. No encontré ningún plugin para eso y con CSS tampoco parecía fácil.

Nuestro objetivo es que se vea así:

¿Alguien tiene alguna idea, por favor?

Hola,

¿Puedes probar este CSS?

Asume que quieres ocultar el texto de notificación predeterminado.
Se basa en el tema predeterminado. ¡Avísame si necesita ajustes!

#topic-footer-buttons {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    
    button.create { order: -4; }
    button.bookmark { order: -3; }
    button.share-and-invite { order: -2; }
    button.flag-topic { order: -1; }
    
    .topic-notifications-button {
        margin-block: 0;
        
        .reason  {
            margin-top: 0;
            
            .text {
                display: none;
            }
        }
    }
}

@media screen and (max-width: 924px) {
    html.desktop-view #topic-footer-buttons .topic-notifications-button {
        margin-top: 1em;
    }
}
1 me gusta

¡Genial, funciona! ¡Gracias! :pray:

1 me gusta

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