# How to make topic Title and Tag selector on the same line?

**URL:** https://meta.discourse.org/t/how-to-make-topic-title-and-tag-selector-on-the-same-line/122600
**Category:** UX
**Created:** [10 ביולי,‏ 2019,‏ 9:21pm UTC](https://meta.discourse.org/t/how-to-make-topic-title-and-tag-selector-on-the-same-line/122600 "2019-07-10T21:21:33Z")
**Posts on this page:** 3
**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: [10 ביולי,‏ 2019,‏ 9:21pm UTC](https://meta.discourse.org/t/how-to-make-topic-title-and-tag-selector-on-the-same-line/122600/1 "2019-07-10T21:21:33Z")

</div>

Hi, my community does not use categories so I’ve hidden it with CSS.

 ![image](https://global.discourse-cdn.com/meta/original/3X/b/0/b08246aeeeefbc6626c8194ceffad8bfc779377b.png)  
Now I’m trying to make the Title field and Tag selecter kit to be on the same line to conserve space.  
So first thing I’ve done is to remove the `flex-grow: 1` property under `#reply-control .title-input input`. This makes the Title field at a good spot.

 ![image](https://global.discourse-cdn.com/meta/original/3X/2/d/2d20144defe43978f50ca9137a7a9b4f7f5590f4.png)  
How can I make the tag selector to be the same size as the title field and to be placed right next to it on _one_ line instead of taking up two lines. I will really appreciate any help, thank you.

---

<div class="post-metadata">

### Author: ![tshenry](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tshenry/32/119495_2.png) [@tshenry](https://meta.discourse.org/u/tshenry)
#### Post date: [11 ביולי,‏ 2019,‏ 2:10am UTC](https://meta.discourse.org/t/how-to-make-topic-title-and-tag-selector-on-the-same-line/122600/2 "2019-07-11T02:10:12Z")

</div>

Try the following CSS:

```scss
#reply-control .with-tags .title-input {
  flex: 1 1 50%;
  margin-left: 0;
  margin-right: 5px;
}

```

II think it makes a little more sense to have more width for the title, but if you want the two inputs to be even in width, change the 50% to 25%.

---

<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: [11 ביולי,‏ 2019,‏ 2:35am UTC](https://meta.discourse.org/t/how-to-make-topic-title-and-tag-selector-on-the-same-line/122600/3 "2019-07-11T02:35:54Z")

</div>

You’re an absolute legend 😃 Thank you so much!
