please check this URL.
http://works.ebexsoft.com/destin/
There is an unexpected margin/padding in the bottom. I have used css like this:
@charset "utf-8";
body{margin:0; color:#232323; padding:0; background: #FDF8E4 url(images/bg.jpg) repeat-x;}
* {margin:0; padding:0}
html, body {margin: 0; padding: 0:}
But the space is not removing. What can I do? Please help.
The space at the bottom is being caused by the
<div id="body_area1">element.In the
.css, you haveheight: 200px;in the#body_area1section, which is what’s causing the “empty” space at the bottom.Either changing
200pxto be a smaller value, or removing theheight:line altogether should get you the desired effect.