> For the complete documentation index, see [llms.txt](https://egitim.leaderos.com.tr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://egitim.leaderos.com.tr/arkaplana-goersel-ekleme.md).

# Arkaplana Görsel Ekleme

İhtiyacınız olan kodu **Yönetim Paneli > Tema > CSS** sayfasına giriniz.

#### Büyük bir wallpaper için:

```css
body {
    background-image: url(https://site.com/arkaplan.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top;
}
```

#### Küçük küçük görseller için:

```css
body {
    background-image: url(https://site.com/arkaplan.png);
    background-size: 200px;
}
```
