> For the complete documentation index, see [llms.txt](https://jdocs.themeparrot.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jdocs.themeparrot.com/joomla-templates/business/layout-customization/home-style-2/standard-support-bottom-blocks.md).

# Standard Support bottom blocks

### Standard Support bottom blocks

> Module position: home-6
>
> Module class suffix: Not used

![](/files/rlsCyJnUkHW6ysTxyxPS)

If you want to display your blocks information like this you have to create a custom module and publish the custom module like below

#### Step-1:

![](/files/DqHWUJNABcArN3MACQDR)

#### Step-2:

![](/files/CDUjIBqkvBCO52eD2gyX)

#### step-3

![](/files/qbADpdzO0CDZJVDhMhPU)

#### Step-4:

Add the following code in your custom module

```html
<div class="h-block-6 h-block white">
    <div class="h-block-content flex-blocks">
        <div class="row">
            <div class="col-sm-4"><img src="images/themeparrot/tab_images/standard_support/template.png" alt="template" class="img-responsive" />
                <h4>Template Modeling</h4>
                <p>Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum.</p>
            </div>
            <div class="col-sm-4"><img src="images/themeparrot/tab_images/standard_support/support.png" alt="support icons" class="img-responsive" />
                <h4>Support service</h4>
                <p>Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum.</p>
            </div>
            <div class="col-sm-4"><img src="images/themeparrot/tab_images/standard_support/product.png" alt="shopping" class="img-responsive" />
                <h4>Product Modeling</h4>
                <p>Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum.</p>
            </div>
        </div>
    </div>
</div>
```
