---
title: "Table widths aren&#8217;t being applied"
date: 2026-04-23
author: "GravityKit"
link: "https://www.gravitykit.com/docs/gravityview/customizing-your-views/table-widths-arent-being-applied/"
---

If you add custom table column widths and the columns aren't willing to budge, add the following line of CSS to your site ([here's how](http://docs.gravityview.co/article/246-how-to-add-custom-css-to-your-website)):

```
table.gv-table-view {
  table-layout: fixed;
}
```

```
table.gv-table-view {
  table-layout: fixed;
}
```

 That will force the columns to respect your width settings.