> For the complete documentation index, see [llms.txt](https://owwwlab.gitbook.io/chaos-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://owwwlab.gitbook.io/chaos-docs/els/sections-with-bg.md).

# Extended backgrounds

If you want to extend the background of a column to the right of left, then you should read this page

Example:

![](/files/-LLV0BYfq6_X_x6BN5UV)

```
<section class="section pad-0">
  <div class="container">

    <div class="row extend-bg-wrapper">

      <div class="col-md-6">
        <div class="extend-left set-bg">
        <img src="../../assets/img/backgrounds/12.jpg" class="set-me"></div>
      </div>

      <div class="col-md-5 col-md-offset-1 p-top-50 p-bottom-50">
        <div class="tb-vcenter-wrapper">
          <div class="vcenter">
            --- contents of right side ---
          </div>
        </div>
      </div>

    </div>

  </div>
</section>
```

* The section should get a `.pad-0` class to remove the paddings
* add `.extend-bg-wrapper` class to `.row` div
* use `.set-bg` asset to make the image at the background of the column
* add `.extend-left` ( alternative is `.extend-right`) to extend the column to right
* add paddings to the column with your contetnt.
* The height of the section will be the same heigh of your content.

Alternatively, you can specify the height of the section

```
<div class="row extend-bg-wrapper h-600">
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://owwwlab.gitbook.io/chaos-docs/els/sections-with-bg.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
