# Categories Plus Latest Layout How to Use Full Screen Width?

**URL:** https://meta.discourse.org/t/categories-plus-latest-layout-how-to-use-full-screen-width/390591
**Category:** Development
**Tags:** css
**Created:** [December 6, 2025, 9:24pm UTC](https://meta.discourse.org/t/categories-plus-latest-layout-how-to-use-full-screen-width/390591 "2025-12-06T21:24:16Z")
**Posts on this page:** 1
**Showing post:** 4

<div class="post-metadata">

### Author: ![BrianC](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/brianc/32/487568_2.png) [@BrianC](https://meta.discourse.org/u/BrianC)
#### Post date: [December 8, 2025, 8:39pm UTC](https://meta.discourse.org/t/categories-plus-latest-layout-how-to-use-full-screen-width/390591/4 "2025-12-08T20:39:44Z")

</div>

Thanks. This got it done.

```css
.badge-category __wrapper .badge-category__ name {
    font-size: 1.3em;
}
table.category-list {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 1rem;
  box-sizing: border-box;
  border-collapse: separate;
  border-spacing: 0;
}

table.category-list thead th {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

table.category-list tbody tr td {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
}

table.category-list tbody tr:last-of-type td {
  border-bottom: none;
}

.latest-topic-list {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 1rem;
  box-sizing: border-box;
}

.latest-topic-list-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.latest-topic-list-item:last-of-type {
  border-bottom: none;
}

```

---

_[View the full topic](https://meta.discourse.org/t/categories-plus-latest-layout-how-to-use-full-screen-width/390591)._
