This is my site in question: LINK
As you can see, my Logo is pushed over to the right side in Firefox but it should be centered. Works great in Chrome for example.
I've tried looking for a Firefox only stylesheet, but I couldn't really find the right CSS setting that makes this work correctly.
Here's the relevant HTML code that's wrapped in a id named container that I have so far:
<div id="nav">
<ul id="index_cards">
<li id="card-1">
<h3><strong>Home</strong></h3>
</li>
<li id="card-2">
<h3><strong>About/Contact</strong></h3>
</li>
<li id="card-4">
<h3><strong>Portfolio</strong></h3>
</li>
<li id="card-5">
<h3><strong>Services</strong></h3>
</li>
</ul>
</div>
<div id="header">
<div id="logo">
<img src="imgs/logo.png" name="ielogo" width="457" height="223" id="ielogo" />
</div>
</div>
CSS:
#container {
top:-73px;
margin-top:-70px;
min-height:100%;
position:relative;
display:block;
}
#header {
margin-top:-30px;
height:250px;
background-image:url(../imgs/header-top.png);
background-repeat:repeat-x;
padding:10px;
}
#logo {
margin:0 auto;
width:457px;
height:223px;
}
logolooks fine. I think you just need to replace theimghtml with css instead. – user1027562 Jul 26 '12 at 21:15