# How to switch places of the post button and image upload? (mobile)

**URL:** https://meta.discourse.org/t/how-to-switch-places-of-the-post-button-and-image-upload-mobile/116625
**Category:** UX
**Created:** [May 1, 2019, 10:41pm UTC](https://meta.discourse.org/t/how-to-switch-places-of-the-post-button-and-image-upload-mobile/116625 "2019-05-01T22:41:50Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![nexo](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/nexo/32/106384_2.png) [@nexo](https://meta.discourse.org/u/nexo)
#### Post date: [May 1, 2019, 10:41pm UTC](https://meta.discourse.org/t/how-to-switch-places-of-the-post-button-and-image-upload-mobile/116625/1 "2019-05-01T22:41:50Z")

</div>

![image](https://global.discourse-cdn.com/meta/original/3X/7/b/7b1ebbe6b1ef4e5df1dc49bd4ba181e50c67b835.png)  
We got a majority of feedback that we should have the post button on the right, it’s for better UX. Any idea how I can switch the places of these two elements? I’ve tried `float: right` but no luck.

> **[Gyazo Screen Video](https://gyazo.com/09bec10d23fd0f1ea25004e5b7568b3a)**
>
> Gyazo is the easiest way to record screenshots & videos you can share instantly. Save time with async visual communication that's effortless and engaging.

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [July 11, 2019, 2:12pm UTC](https://meta.discourse.org/t/how-to-switch-places-of-the-post-button-and-image-upload-mobile/116625/10 "2019-07-11T14:12:55Z")

</div>

Something like this should get you most of the way there… I haven’t tested it extensively so just keep an eye on things as it may need some additional adjustment in certain contexts.

```scss
#reply-control .submit-panel .save-or-cancel {
  flex-direction: row-reverse;
  order: 2;
}

```
