# 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;
}
```
