> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://docs.clientexec.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# Alerts are Under The Header and Clients Cannot View Them

In some instances you may have added a large logo and your header now overlaps alert messages causing your clients not to be able to view them. For now a quick fix for this would be to either:

1. Reduce the height of your logo.
2. Or in **Settings** > **Company** > **Customize HTML**, add this code to the header:


```css
<style>
.header {z-index: 10 !important;}
.alert {z-index: 1002 !important;}
</style>
```