# Change default Bg image on Archive page

### 1, Change default background image on Category page:

```css
.nc-PageArchive > .w-full.px-2.xl\:max-w-screen-2xl.mx-auto > .rounded-3xl.relative.aspect-w-16.aspect-h-12 > .nc-NcImage {
    background-image: url('YourImageUrl');
    background-size: cover;
}

.nc-PageArchive > .w-full.px-2.xl\:max-w-screen-2xl.mx-auto > .rounded-3xl.relative.aspect-w-16.aspect-h-12 > .nc-NcImage img {
    display: none;
}


```

### 2, Change default background image on Author page:

```css
.nc-PageArchiveAuthor > .w-screen.px-2.max-w-full.\32 xl\:max-w-screen-2xl.mx-auto > .rounded-3xl.relative.aspect-w-16.aspect-h-12 > .nc-NcImage {
    background-image: url('YourImageUrl');
    background-size: cover;
}

.nc-PageArchiveAuthor > .w-screen.px-2.max-w-full.\32 xl\:max-w-screen-2xl.mx-auto > .rounded-3xl.relative.aspect-w-16.aspect-h-12 > .nc-NcImage img {
    display: none;
}


```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://nghiaxchis.gitbook.io/ncmaz-wordpress/custom-css/change-default-bg-image-on-archive-page.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
