duderuud
Well-known member
Hi all,
Does anyone know how to switch the save and cancel buttons while editing a private message?
Already managed to do this for normal post edits (thanks @Russ) with
But don't know how to do this with pm's.
Does anyone know how to switch the save and cancel buttons while editing a private message?
Already managed to do this for normal post edits (thanks @Russ) with
Code:
.message--post .formSubmitRow .formSubmitRow-controls
{
display: flex;
justify-content: center;
button[type="button"]
{
order: 1;
margin-right: 10px;
}
button[type="submit"]
{
order: 2;
}
}
But don't know how to do this with pm's.