Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
Post your html so we can see what goes where :/ – Andres Ilich Mar 10 '12 at 9:03
Not directly related, but you should never do div#id, since #id is unique anyway, the extra div selector is just pointless extra work for the browser. (See "Rules with overly qualified selectors") – dbaupp Mar 10 '12 at 9:16
It's also worth noting that you have many elements with the same id. id must be unique. – Andrew Leach Mar 10 '12 at 20:54

3 Answers

I'm assuming that your div#showoff div is the container for your product items, and from what i can tell you're displaying them in a inline-block fashion so in order to line them up you need to also pass the vertical-align:top property in order to stack them up properly.

CSS

div#showoff {
    display: inline-block;
    margin-top:3px;
    width: 431px;
    height:580px;
    text-align: center;
    vertical-align: top;
}
share|improve this answer

The reason it's different is the slider at the bottom of each entry is a different height because the images are not uniform, neither is the text. Set the height explicitly

div#slider div#window {
  height: 200px;

and everything lines up correctly.

share|improve this answer

Your div#showoff should be set float: left; and it would appear uniform regardless of the number of categories you have.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.