Posts: 5
Name: Jerry
Location: Westminster, Colorado
|
I'm having a problem with my css layout. It seems my layer comes out perfect in Internet Explorer, but not for Mozilla Firefox.
I don't know what the issue is, so pretty much what I am asking for is if someone else can spot the problem for me.
Here's some image showing what I mean:
Internet Explorer example
Mozilla Firefox example
Here's my current css code. I don't think the problem involves my html file, but if you need it, just ask and I'll post it.
Thanks for any help.
Here's the html:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Created on: 10/2/2007 -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<meta name="description" content="Graphic Design club of Standley Lake High School">
<meta name="keywords" content="">
<meta name="author" content="Webmaster">
<meta name="generator" content="AceHTML Freeware">
<link rel="stylesheet" href="css/css.css" type="text/css">
<link rel="stylesheet" href="css/lightbox.css" type="text/css" />
<script src="javascript/prototype.js" type="text/javascript"></script>
<script src="javascript/lightbox.js" type="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="header">
<b>Header</b>.
<p>Make the header's image related to our club. Size is: width: 680px and height: 100px.</p>
</div>
<div id="navigation_menu">
<b>Navigation</b>.
<p>Make a nice pattern image. width is 120px.</p>
<p>What Links should we have on the site?</p>
</div>
<div id="content">
<p><b>Body</b>.</p>
<p>This is just an example site, not completed.</p>
<p>I'll make the background image for this.</p>
<p>A picture of all the club members would be nice here</p>
<p>Not sure what else will go here, any ideas.</p>
</div>
<div id="footer">
<b>Footer</b>. I'll make the background image for this.
</div>
</div>
</body>
</html>
Last edited by code_stalker : 10-02-2007 at 10:16 PM.
Reason: request for html.
|