---
title: "DIY Version 2.2 changes to HTML output"
date: 2026-04-23
author: "GravityKit"
link: "https://www.gravitykit.com/docs/gravityview-pro/diy-layout/version-2-2/"
---

Before 2.2, the "Before Output" and "After Output" content would not be displayed consistently: the *Before Output* value would display inside the Container Tag, and the *After Output* would display outside the container tag.

 Version 2.2 fixes that discrepancy.

![A screenshot of GravityView field settings where there are HR tags in Above Content and Below Content textareas, and the Container Tag is set to DIV.](https://www.gravitykit.com/wp-content/uploads/2026/04/dTabmx.png)

### Before 2.2:

```

    
    Dan Dan
    
     

```

```

div id="gv_diy_9209" class="gv-diy-view">
    div class="gv-field-1-1">
    hr>Dan Dan
    div>
     hr>
div>
```

### After 2.2:

```

   
       Dan Dan
    

```

```

div id="gv_diy_9209" class="gv-diy-view">
   hr>
       div class="gv-field-1-1">Dan Dandiv>
    hr>
div>
```