---
title: "Are Views responsive on mobile devices?"
date: 2026-04-23
author: "GravityKit"
link: "https://www.gravitykit.com/docs/gravityview/customizing-your-views/are-views-responsive-on-mobile-devices/"
---

Yes! Both Table View and DataTables layouts are responsive on mobile devices:

![View type options: Table for static view, List for listing items, DataTables for dynamic table display](https://www.gravitykit.com/wp-content/uploads/2025/10/file-qCPD8PHu83.png)
*A Table View layout like this:*![Table showing columns for First, Last names, Email, and Edit Entry links](https://www.gravitykit.com/wp-content/uploads/2025/10/file-HNlWyciVs7.png)
*...will shrink to a vertical layout, so it looks better on mobile devices:*![Contact list with names Alice, Bob, and Dan, showing first name, last name, email, and edit entry links](https://www.gravitykit.com/wp-content/uploads/2025/10/file-lZ1aMMEEQg.png)
*You can use this filter to disable this responsive mode:*
```
add_filter( 'gravityview/template/table/use-legacy-style', '__return_true' );
```

```
add_filter( 'gravityview/template/table/use-legacy-style', '__return_true' );
```

Read here how to add this code snippet to your website: [Where to put code samples.](https://www.gravitykit.com/docs/gravityview/customizing-your-views/where-to-put-code-samples/)

DataTables, on the other hand, has a special mode called "Responsive Tables", which you can read more about here: [How to Enable the Responsive Tables mode](https://www.gravitykit.com/docs/gravityview-pro/datatables/how-to-enable-the-responsive-tables-mode/).

![Data table with columns: names, positions, offices, ages, start dates; pagination controls below](https://www.gravitykit.com/wp-content/uploads/2026/04/eUyErB.gif)