> 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/book-el.md).

# Book Element

![book element](/files/-LLV0BI5TQc4V0XM1IyL)

```
<a href="#" class="book-el">
  <div class="contents">

    <div class="item-meta">
      <i class="oli oli-bookmark"></i><span class="side-info">44</span>
    </div>

    <div class="title-wrapper">
      <h6 class="sub-title">Series:</h6>
      <h2 class="title">Adolescent health transition</h2>
    </div>

  </div>
 </a>
```

This element consists of two sections 1. `.item-meta` which is used for metadata purpose and is positioned at the top 2. `.title-wrapper` which is used for the title

Above example does not uses thumbnail or cover for the element.

### With cover

You should add an image with class of `.set-me` to the element and also add `.set-bg` class to book element

```
  <a href="#" class="book-el set-bg">
    <img src="../../assets/img/publications/grid/01.jpg" class="set-me">
  <div class="contents">

    <div class="item-meta">
      <i class="oli oli-bookmark"></i><span class="side-info">215</span>
    </div>

    <div class="title-wrapper">
      <h6 class="sub-title">Series:</h6>
      <h2 class="title">Adolescent health transition</h2>
    </div>

  </div>
 </a>
```

That will produce the following image:

![book element with cover](/files/-LLV0BIBjdB0DTKpqqmr)

### Color Skins

![colors](/files/-LLV0BIDP0o87_TwMtQZ) Add these classes to `.book-el`

* `.skin-blue`
* `.skin-green`
* `.skin-purple`
* `.skin-yellow`
* `.skin-red`
* `.skin-cyan`
* `.skin-lemon`

### Shadow

![shadow](/files/-LLV0BIFDrWci9YqwxoS) To add shadow to this element add `.shadow` class

```
class="book-el shadow skin-yellow"
```

### Alternative Contents

There are some variations for content type:

![](/files/-LLV0BIHldpbrxyagRO_)

The HTML markup will be

```
<a href="#" class="book-el set-bg skin-blue">
  <img src="../../assets/img/publications/grid/01.jpg" class="set-me">
  <div class="contents">

    <div class="item-meta">
      <h6 class="date">12 Oct 2015</h6>
      <h6 class="cat">Seminar</h6>
    </div>

    <div class="title-wrapper">
      <h2 class="title">Create Some Beautiful Images</h2>
    </div>

  </div>
</a>
```

**Note** to `.date` and `.cat` classes. Also you can have a `h6` with class of `.author` if you want to have author name at third line (`<h6 class="author">By John Doe</h6>`)

## Mini!

![book element mini](/files/-LLV0BIJR6GZk_VFqdmF)

This is an exciting variation of this element and it uses a simple `.mini` class to achieve this. That simple!

```
<a href="#" class="book-el mini shadow set-bg skin-red">
  <img src="../../assets/img/publications/grid/01.jpg" class="set-me">
  <div class="contents">

    <div class="item-meta">
      <span>issue 24</span>
    </div>

    <div class="title-wrapper">
      <h2 class="title">Autumn 2015</h2>
    </div>

  </div>
</a>
```
