Repeating Image on Div

I’m normally not in a hurry… but this is a volunteer effort that is suppose to be ready for a printer two days ago… I’ve added a <div> with all the sponsors logos, but I only need them once… How should I keep it from repeating?

<body>
    <div class="col-xs-3 sponsors">
    </div>
</body>
 .sponsors{
    border:1px solid black;
    background-color:rgb(0,0,0);
  	background-color:rgba(0,0,0, .5);
    color:orange;
    padding: 35px;
    padding-top:0;
    padding-bottom:100%;
    margin-top:25px;
    margin-right:45px;
    float: right;
    border-radius:15px;
   font-family: 'Anton';font-size: 22px;
    font-size:1.5em;
   background-image: url("https://scontent-atl3-1.xx.fbcdn.net/v/t1.0-9/17498989_10206724840799574_3633853379852029477_n.jpg?oh=28da233e13b784460eee3cd19c5b6ec7&oe=59734521");
   background-size:contain;
   }
body{ 
  background:no-repeat center center fixed;
   -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
 }

http://codepen.io/TurtleWolf/pen/GWGxwe?editors=0100

  background-repeat: no-repeat;

…sometimes works. :wonky:

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.