I inserted this code to build a thumb gallery but it messed up my left and right border of my wrapper (it disappear). You can see it here http://blog.howtodjango.com/temp/template/

below is the code that causes it.

.gallery li {
display: inline;
list-style: none;
width: 126px;
min-height: 175px;
float: left;
margin: 15px 15px 1px 15px;
text-align: center;
}

Any help would be great!

link|improve this question

38% accept rate
feedback

4 Answers

up vote 1 down vote accepted

You need to set overflow:auto and remove the left padding on #main-content

#main-content {
background: none;
overflow: auto;
padding-top: 5px;

}

That works for me.

link|improve this answer
That works, thank you! – Sam Mitchell Jan 1 at 8:36
1  
No problem. Can you mark this as best answer? I'm new to the site and don't have many answers yet. – dustinmm80 Jan 1 at 19:33
feedback

this is related to floating

  • elements to left, add this css:

    #page-wrap {
        overflow: hidden;
    }
    
  • link|improve this answer
    If he does this, his #main-content is useless – maxisam Jan 1 at 7:49
    uraxaci aper :) – Aram Mkrtchyan Jan 1 at 9:06
    feedback
    #main-content {
        background: none repeat scroll 0 0 white;
        overflow: hidden;
        padding-left: 250px;
        padding-top: 5px;
    }
    

    If you wanna figure out why, read this

    link|improve this answer
    1  
    if he does, the page layout is broken – Mr. BeatMasta Jan 1 at 8:43
    Well, it causes by other problem. His question is "my left and right border of my wrapper (it disappear)". My answer tells him why it disappear. Besides, I don't know what kinda layout he wants, I can't make further suggestion. I think use a wrong way to fix a problem doesn't make it become a correct solution. #page-wrap is the top wrapper, your suggestion will cause other issue in the future if he need scroll bar somewhere. – maxisam Jan 1 at 17:49
    1. i guess he wants a layout which is not fucked up at least lol; 2. if he needs correct overflow in future then combination of my and your answers will be best xDD – Mr. BeatMasta Jan 1 at 18:04
    At that time, he will come back and ask another question like where the hell is my scroll bar. lol – maxisam Jan 1 at 19:12
    loool xDD also true.. stack rulez though :D he'll learn much hangin here all day long :D – Mr. BeatMasta Jan 1 at 20:01
    show 1 more comment
    feedback

    You need to remove an extra div tag that exists in your code. Delete one of them at the end and see if this works. Or you could be missing an open tag. Since you did not post your code I cannot figure this out.

    link|improve this answer
    feedback

    Your Answer

     
    or
    required, but never shown

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