# How to make my forum view wider?

**URL:** https://meta.discourse.org/t/how-to-make-my-forum-view-wider/33126
**Category:** Support
**Created:** [September 11, 2015, 3:02pm UTC](https://meta.discourse.org/t/how-to-make-my-forum-view-wider/33126 "2015-09-11T15:02:45Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![hashOK](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/hashok/32/84852_2.png) [@hashOK](https://meta.discourse.org/u/hashOK)
#### Post date: [September 11, 2015, 3:02pm UTC](https://meta.discourse.org/t/how-to-make-my-forum-view-wider/33126/1 "2015-09-11T15:02:45Z")

</div>

Excuse me if this has been discussed before.I haven’t been able to find any similar topic.

The present view of my forum is

 ![](https://global.discourse-cdn.com/meta/original/3X/e/d/ed2c3582ce3963ca65853833646692ed46fbaf5c.png) 

I want the view to be browser full view no extra spaces on the left and right.Is it possible to have this view?

Kindly solve this issue.

---

<div class="post-metadata">

### Author: ![riking](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/riking/32/170938_2.png) [@riking](https://meta.discourse.org/u/riking)
#### Post date: [September 11, 2015, 4:53pm UTC](https://meta.discourse.org/t/how-to-make-my-forum-view-wider/33126/2 "2015-09-11T16:53:48Z")

</div>

Add this to a CSS customization:

```plaintext
@media screen and (min-width: 1400px) {
  .wrap { max-width: 1200px; }
}

@media screen and (min-width: 1600px) {
  .wrap { max-width: 1400px; }
}

```

etc etc

---

<div class="post-metadata">

### Author: ![hashOK](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/hashok/32/84852_2.png) [@hashOK](https://meta.discourse.org/u/hashOK)
#### Post date: [September 12, 2015, 4:33am UTC](https://meta.discourse.org/t/how-to-make-my-forum-view-wider/33126/3 "2015-09-12T04:33:42Z")

</div>

thanks for the code.  
Should I need to rebuild discourse docker after making a change to the CSS?  
If so, what is the command that i should run?

---

<div class="post-metadata">

### Author: ![riking](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/riking/32/170938_2.png) [@riking](https://meta.discourse.org/u/riking)
#### Post date: [September 12, 2015, 4:49am UTC](https://meta.discourse.org/t/how-to-make-my-forum-view-wider/33126/4 "2015-09-12T04:49:17Z")

</div>

No, enter it in Admin → Customize → CSS/HTML. There’ll be a preview button, and when you check Enabled and then Save, a refresh will show it.

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [November 6, 2018, 1:08pm UTC](https://meta.discourse.org/t/how-to-make-my-forum-view-wider/33126/5 "2018-11-06T13:08:37Z")

</div>



---

<div class="post-metadata">

### Author: ![Johani](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/johani/32/176920_2.png) [@Johani](https://meta.discourse.org/u/Johani)
#### Post date: [November 6, 2018, 1:09pm UTC](https://meta.discourse.org/t/how-to-make-my-forum-view-wider/33126/6 "2018-11-06T13:09:46Z")

</div>


