> For the complete documentation index, see [llms.txt](https://docs.adnuntius.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.adnuntius.com/adnuntius-high-impact/high-impact-configuration.md).

# High Impact configuration

High impact configuration is for you as a publisher that have specific needs for how the high impact formats should be rendered on your page. You might for instance need to have a max height for the ad. In order to do that you can add this to your page:

```html
<script src="https://assets.adnuntius.com/aim.js" async></script>

// Script below is optional if you need to do any changes to the height of the fullscreen
<script>
  window.aim = window.aim || {
    style: {
      fullScreen: {
        maxHeight: 680
      }
    }
  }
</script>
```

This will set the max height to 680px, if you omit this, it will default to 100% of the window height.
