> For the complete documentation index, see [llms.txt](https://docs.meta-inf.hu/content-exporter-confluence/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.meta-inf.hu/content-exporter-confluence/user-guides/before-exporting/custom-stylesheets/adding-a-watermark.md).

# Adding a watermark

Aan image can be inserted to a custom stylesheet as a watermark with the following CSS code:

```css
@page {
  background-image: url("https://www.meta-inf.hu/download/attachments/36405251/header_background_main.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: 4cm;
}
body{
  background-color: transparent;
}
```

{% hint style="warning" %}
**Important:**

* We do not download the images in CSS for processing, so you have to use absolute URL to be reachable during conversion.
* The converter has no authorization information, so the resource must be accessible anonymously.
* The body has a white background, so it must be removed.
  {% endhint %}

<br>

<br>
