I am building a new page and I'm having problem having this space on top of it.
you can take a look at it http://www.mtimexico.com.mx/graficos.php
here's the situation. All Divs are inside a Parent Div called Container. This div has the following qualities:
body {
margin-top: 0;
padding-top: 0;
background-image: url(images/bg.gif);
background-repeat: repeat-x;
background-attachment: fixed;
background-color:#003366;
font-family:Arial, Helvetica, sans-serif;
}
#container {
position:relative;
width:1000px;
height: 1250px;
top: 0;
margin-left: auto;
margin-right: auto;
margin-top: 0;
border: 1px black solid;
z-index: 3;
}
If I remove the container Div and just have the child Divs then the space on top disappears and the page goes to the top, however it gets aligned to the left.
As you can imagine what I want is the page both centered and on top, so I'm pretty much working with the files that have the container, so that's why I'm trying to fix either
http://www.mtimexico.com.mx/graficos.php or
http://www.mtimexico.com.mx/menu-soporte.php
I'm assuming there is an issue with the CSS of the menu, because it's the only rare addition apart from the normal CSS.
I've been working on this all day long but can't figure out a solution, if you can please help me out.