I'm webpage, and have the layout working in firefox and google chrome, but not in ie 7, so I was wondering if anyone could help me?
__________________
|.........image................|
|_________________|
|part 1|part 2|part 3..| <- middle section
|_____|____ |______|
|bottom section..........|
|_________________|
In ie, the 3 parts of the middle section appear stacked on top of each other, instead of next to each other, like they do in firefox and chrome.
Also, does anyone know how I can get rid of table-type display styles; it seems like just using inlines should work, but they don't.
html page
Code:
<html>
<head>
<link href="index.css" rel="stylesheet" type="text/css">
</head>
<body>
<div style="width: 1024px; margin: 0 auto; padding: 0px;">
<a href="index.php?p=Link"><img style="border: none; width: 1024px; height:175px;background-color: #FFFF00;" src="header.jpg" /></a>
<div style="display: table; height: 100%; width: 100%;">
<div style="display: table-row; height: 100%; width: 100%;">
<div style="display: table-cell; width: 50px; height; 100%; background-color: #FF00FF"> </div>
<div style="display: table-cell; width: 150px; margin: 0px; padding: 0px; border: none; background-color: #000000;">
<a href="index.php?p=Link"><div class="nav_button">Link</div></a>
<a href="index.php?p=Link"><div class="nav_button">Link</div></a>
<a href="index.php?p=Link"><div class="nav_button">Link</div></a>
<a href="index.php?p=Link"><div class="nav_button">Link</div></a>
<a href="index.php?p=Link"><div class="nav_button">Link</div></a>
<a href="index.php?p=Link"><div class="nav_button">Link</div></a>
<a href="index.php?p=Link"><div class="nav_button">Link</div></a>
<a href="index.php?p=Link"><div class="nav_button">Link</div></a>
<a href="index.php?p=Link"><div class="nav_button">Link</div></a>
</div>
<div style="display: table-cell; width: 824px; margin: 0px; padding: 0px; border: none; background-color: #00FFFF">
<b>Welcome</b>
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
<b>Hello!</b>
</div>
</div>
</div>
<div style="width: 100%; border: none; background-color:#000000; color:#FFFF00; padding: 10px 5px;">
<a href="index.php?p=P_Site_Map" style="color:#FFFF00">Site Map</a> | <a href="index.php?p=P_Security_Notice" style="color:#FFFF00">Security Notice</a> | <a href="index.php?p=P_FOIA" style="color:#FFFF00">FOIA</a> | <a href="index.php?p=P_Disclaimer" style="color:#FFFF00">Disclaimer</a></td> <!-- This is the footer for the legal stuff -->
</div>
</div>
</body>
</html>
css page
Code:
.nav_button{
border: thin solid #000000;
display: block;
width: 150px;
background-color: red;
color: #FFFF00;
}
.content_title{
text-align: center;
font-family: purisa;
}
.content_text{
padding: 0px 40px;
}
[/code]