I am using shopify to run my store and I have designed this front page tamplet to show as many collection as I would have. For some reason when I have original four collections, there is no odd spacing in the UI. When I add more products, it adds random space as shown on the screenshots below. What am I doing wrong?
here is part of css
div#image {
height:240px;
margin-top:5px;
}
div#showoff {
display: inline-block;
margin-top:3px;
width: 431px;
height:580px;
text-align: center;
}
div#showoff h2 {
font-size:25px;
padding-top:3px;
}
div#collection-name {
height: 35px;
width: 75%;
margin-left:55px;
color: white;
background: #eeeeee;
text-shadow: 1px 2px 0;
letter-spacing: 1px;
cursor: pointer;
border: none;
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
-o-border-radius: 8px;
}`
This is the test environment with a bug when adding more product here lockman-fritsch1418 dot myshopify dot com
This is the production where I only have four categories and the bug is not there here shopaisle dot com
div#id, since#idis unique anyway, the extradivselector is just pointless extra work for the browser. (See "Rules with overly qualified selectors") – dbaupp Mar 10 '12 at 9:16id.idmust be unique. – Andrew Leach Mar 10 '12 at 20:54