I'm trying to get text from a div under a div to have little to no margin.
Here's the pic:
I want "Recent Works" and "About Me" to have little to no space between them and the div above them. I've tried setting margins and padding to 0 already.
DIV setup for the site:
Wrapper (centered vertically and horizontally)
-Banner (top)
-Logo (left side of banner) DIV and Menu (right side of banner) DIV
-Sidebar DIV (left)
-bodyHome DIV (right)
Here's the CSS code:
Can I tune this to what I want or is it caused by something out of my control (browser defaults, CSS defaults, etc.)?
Here's the pic:

I want "Recent Works" and "About Me" to have little to no space between them and the div above them. I've tried setting margins and padding to 0 already.
DIV setup for the site:
Wrapper (centered vertically and horizontally)
-Banner (top)
-Logo (left side of banner) DIV and Menu (right side of banner) DIV
-Sidebar DIV (left)
-bodyHome DIV (right)
Here's the CSS code:
Code:
#wrapper {
position:absolute;
top: 50%;
left: 50%;
width:750px;
height:475px;
margin-top: -225px;
margin-left: -375px;
border: 1px solid #008000;
background-color: #f3f3f3;
}
#bodyHome{
font-family:BLEGH
font-size:14px;
position:absolute;
top:100;
left:200;
padding: 0 10px;
border: 1px solid #000033;
margin:0;
}
#banner{
position:absolute;
top:0;
height:100px;
width:750px;
border : 1px solid #000033;
margin:0;
}
#sidebar{
font-family: BLEGH
font-size:14px;
width:200px;
height: 375px;
border : 1px solid #008000;
position:absolute;
top:100;
left:0;
}
#logo{
width:200px;
position:absolute;
top:0;
left:0;
}
#rightBanner{
width:550px;
position:absolute;
top:0;
left:200px;
}
Can I tune this to what I want or is it caused by something out of my control (browser defaults, CSS defaults, etc.)?