# Footer

Replace the native footer with your own HTML on your status dashboard.

Source: https://statusdashboard.com/docs/status-dashboards/code/footer

Footer HTML replaces the native status dashboard footer with markup you provide. Add copyright lines, legal links, or feedback widgets that match your site chrome.

***

## Common uses
When Footer HTML is set it **replaces the native StatusDashboard footer entirely** — the default "Powered by" bar is removed and your HTML is rendered full-width at the very bottom of the page. If the field is empty, the native footer is shown as normal.

* Full branded footer that matches your own website
* Copyright line, legal links, or social profiles
* Feedback widget or NPS survey

## Example — full branded footer
```html
<footer style="background:#0f172a;color:#94a3b8;padding:32px 24px;text-align:center;font-size:13px;">
  <p>© 2026 Acme, Inc. —
    <a href="https://acme.com/privacy" style="color:#64748b;">Privacy</a> ·
    <a href="https://acme.com/terms" style="color:#64748b;">Terms</a> ·
    <a href="https://acme.com/support" style="color:#64748b;">Support</a>
  </p>
</footer>
```

## Whitelabel and custom footer
The [Whitelabel](/docs/status-dashboards/whitelabel) toggle only removes the default "Powered by StatusDashboard" footer. Custom Footer HTML and Whitelabel are independent — you can use a custom footer without enabling Whitelabel, and vice versa.

## Behavior
* When set, the native footer is **hidden** and replaced by your HTML. When empty, the native footer is shown.
* Your HTML renders full-width, outside the page's content width constraint. Platform content above your custom footer is capped at 1024px.
* Standard HTML, inline styles, `<script>` tags, and `<style>` tags are all supported.
* Your footer is automatically pushed to the bottom of the page regardless of content length — no special CSS required.
