# モバイルデバイス向けに新しいトピックヘッダーボタンを移動して大きくする方法

**URL:** https://meta.discourse.org/t/how-to-move-the-new-topic-header-button-and-make-larger-for-mobile-devices/374871
**Category:** UX
**Tags:** new-topic-header-button
**Created:** [2025 年 7 月 18 日午後 11:21 UTC](https://meta.discourse.org/t/how-to-move-the-new-topic-header-button-and-make-larger-for-mobile-devices/374871 "2025-07-18T23:21:36Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Billy](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/billy/32/530753_2.png) [@Billy](https://meta.discourse.org/u/Billy)
#### Post date: [2025 年 7 月 18 日午後 11:21 UTC](https://meta.discourse.org/t/how-to-move-the-new-topic-header-button-and-make-larger-for-mobile-devices/374871/1 "2025-07-18T23:21:36Z")

</div>

皆さん、こんにちは！回答を探しましたが、見つかりませんでした。ヘッダーの新しいトピックヘッダーボタン（画像添付、テキストを「質問する」に変更、ボタンは緑色）をヘッダーのカテゴリリンクの左側に移動させたいです。デスクトップとモバイルデバイスの両方で、より目立つようにしたいです。また、モバイルデバイスでは、実際の緑色のボタンが表示されるようにサイズを変更したいです。

これは可能でしょうか？何かご指示いただけると幸いです！

 ![move button](https://global.discourse-cdn.com/meta/original/4X/e/c/7/ec75be12e146d75858200984ef8ee59c270294fe.jpeg)

---

<div class="post-metadata">

### Author: ![NateDhaliwal](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/natedhaliwal/32/313494_2.png) [@NateDhaliwal](https://meta.discourse.org/u/NateDhaliwal)
#### Post date: [2025 年 7 月 19 日午前 12:02 UTC](https://meta.discourse.org/t/how-to-move-the-new-topic-header-button-and-make-larger-for-mobile-devices/374871/2 "2025-07-19T00:02:48Z")

</div>

こんにちは。フォークして、このアウトレットを変更してみてください。

> <https://github.com/discourse/discourse-new-topic-button-theme-component/blob/ab8b7edeeae372ace366c119192f56144c12973f/javascripts/discourse/initializers/initialize-header-new-topic-button.gjs#L5>

次のように変更します。

```js
api.renderInOutlet("bread-crumbs-left", CustomHeaderTopicButton);

```

たとえば、ここにサイドバーの上にボタンを配置しました。

> <https://github.com/NateDhaliwal/discourse-new-topic-button-theme-component/blob/f605192ee124a515b03a92527b78ada35e6a57b3/javascripts/discourse/initializers/initialize-header-new-topic-button.js#L5>

CSSを使用してボタンを変更することもできます（新しいテーマを作成し、CSSを「mobile」タブまたはリポジトリを使用している場合は`mobile.scss`に入力します）。

---

<div class="post-metadata">

### Author: ![Billy](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/billy/32/530753_2.png) [@Billy](https://meta.discourse.org/u/Billy)
#### Post date: [2025 年 7 月 19 日午後 7:28 UTC](https://meta.discourse.org/t/how-to-move-the-new-topic-header-button-and-make-larger-for-mobile-devices/374871/3 "2025-07-19T19:28:48Z")

</div>

どうもありがとうございます！お時間とご協力に感謝いたします。試してみます。
