[RSS Feed/News] Flip save and cancel buttons

Status
Not open for further replies.

XenForo

Administrative
  • Thread starter
  • Admin
  • #1
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
Code:

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.

ادامه مطلب...
 
Status
Not open for further replies.
Back
Top Bottom