# How to add partner logos

**URL:** https://forums.realmacsoftware.com/t/how-to-add-partner-logos/15037
**Category:** RapidWeaver Classic
**Created:** [July 5, 2017, 6:45pm UTC](https://forums.realmacsoftware.com/t/how-to-add-partner-logos/15037 "2017-07-05T18:45:21Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Machist](https://dub1.discourse-cdn.com/flex005/user_avatar/forums.realmacsoftware.com/machist/32/1858_2.png) [@Machist](https://forums.realmacsoftware.com/u/Machist)
#### Post date: [July 5, 2017, 6:45pm UTC](https://forums.realmacsoftware.com/t/how-to-add-partner-logos/15037/1 "2017-07-05T18:45:21Z")

</div>

Hi,

Any ideas how to add 5-6 logos in home page?  
They need to be horizontal, same size and responsive.

I try this and its look good, but it is not responsive

**CSS:**  
body {  
margin: 0;  
}

```
#partners {
  height: 105px;
  background-color: #eee;
  white-space: nowrap;
  width: 100%;
  display: table;
}

.logo-image {
  vertical-align: middle;
  padding: 13px;
  display: table-cell;
}

.logo-image img {
  max-width: 100%;
}

```

**html:**

```
<div id="partners">
  <div class="logo-image">
    <img src="http://placehold.it/120x80" alt="Placeholder Image" />
  </div>
  <div class="logo-image">
    <img src="http://placehold.it/120x80" alt="Placeholder Image" />
  </div>
  <div class="logo-image">
    <img src="http://placehold.it/120x80" alt="Placeholder Image" />
  </div>
  <div class="logo-image">
    <img src="http://placehold.it/120x80" alt="Placeholder Image" />
  </div>
  <div class="logo-image">
    <img src="http://placehold.it/120x80" alt="Placeholder Image" />
  </div>
  <div class="logo-image">
    <img src="http://placehold.it/120x80" alt="Placeholder Image" />
  </div>
</div>
```
