I´m trying to figure out why the left margin of: http://www.cis-elsalvador.org/temp/en/history_mission.php
displays differentlyin Firefox from the left margin of:
http://www.cis-elsalvador.org/temp/es/historia_mision.php
even though they share the same stylesheet and, as far as I can tell, the exact same HTML.
I had a similar problem with other pages because certain text elements did not have their margin and padding defined as 0, but these don´t have any HTML tags that are different from each other. Thanks!
Here´s the layout stylesheet:
body {
margin : auto ;
padding : 0px ;
background: #CCCC99;
}
#wrapper {
width : 778px ;
margin : 0px auto;
padding: 0;
}
#header {
text-align : left;
width: 778px;
}
#leftmenu {
float : left ;
width : 200px ;
}
#content {
float : left;
width : 578px ;
}
#footer {
clear : both ;
text-align : right;
}
.print_hidden
{
display: none;
}