Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Enmanuel Corvo

    (@ecorvo)

    I hope you find this helpful:

    Creating a WordPress Image Grid

    HTML
    <div class=”grid”>
    <div class=”img-next-to-each-other”>
    <img src=”#” />
    </div>
    <div class=”img-next-to-each-other”>
    <img src=”#” />
    </div>
    <div class=”img-next-to-each-other”>
    <img src=”#” />
    </div>
    </div>

    CSS
    .grid {
    width: 100%;
    padding: 0;
    }
    .img-next-to-each-other {
    float: left;
    width: 33.33%;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add images side by side’ is closed to new replies.