1

As you can see by this fiddle here in white middle column (it is supposed to be coloured but jsfiddle wont for some reason) there is padding either side that leaves a horrible white strip down each side. I can't seem to find what is causing it though. Can anyone here have a crack at it? It does make it hard to see because obviously the color is the same but here is what it looks like normally. I need the 3 columns do be touching is all. Thanks for your help, I'm sure it's nothing too difficult.

enter image description here

http://jsfiddle.net/d9aSS/

    body {
    margin:0;
    padding:0;
    border:0;           
    width:100%;
    background:#fff;
    min-width:600px;        
    font-size:90%;
}

Stack overflow wanted some code with the link, please ignore.

Tamil Selvan C
  • 19,913
  • 12
  • 49
  • 70

1 Answers1

0
.colright, .colmid, .colleft {
 float: left;
 position: relative;
 width: 100%;

}

Remove the float: left; line to correct this... Hope it will help you... If any doubt ask...