# Como posso alterar a largura da seção de últimas postagens na página inicial?

**URL:** https://meta.discourse.org/t/how-can-i-change-the-latest-posts-thing-width-in-the-front-page/101177
**Category:** UX
**Created:** [Novembro 2, 2018, 10:52pm UTC](https://meta.discourse.org/t/how-can-i-change-the-latest-posts-thing-width-in-the-front-page/101177 "2018-11-02T22:52:29Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![manzana](https://avatars.discourse-cdn.com/v4/letter/m/d07c76/32.png) [@manzana](https://meta.discourse.org/u/manzana)
#### Post date: [Novembro 2, 2018, 10:52pm UTC](https://meta.discourse.org/t/how-can-i-change-the-latest-posts-thing-width-in-the-front-page/101177/1 "2018-11-02T22:52:29Z")

</div>

What the title says, I want to change the width of this:

 ![image](https://global.discourse-cdn.com/meta/original/3X/2/5/2570ca4f88bb76de2711845883c0ac550e986f35.png)

I want it to be 1/3 of the total width, so categories have more relevance over the default page.

---

<div class="post-metadata">

### Author: ![cpradio](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/cpradio/32/4970_2.png) [@cpradio](https://meta.discourse.org/u/cpradio)
#### Post date: [Novembro 3, 2018, 2:00am UTC](https://meta.discourse.org/t/how-can-i-change-the-latest-posts-thing-width-in-the-front-page/101177/2 "2018-11-03T02:00:38Z")

</div>

With CSS

```plaintext
.column.categories { max-width: 66%; }
.column { max-width: 34%; }

```
