I have a simple css image rollover. I have validated the code, and it works exactly like it is supposed to on Firefox and Chrome, however it was pointed out that it's not working in Safari, Opera, or any Mac browsers. I have a very similar rollover further down the page that works just fine. I've gone over the code several times looking for a typo or anything to explain what's going on, but I'm at a loss.
The actual site can be found here: (very much under construction)
http://www.printyourpowerpoint.com/dev2/index.php
Here is the HTML:
<div id='header'>
<div class='header-first' id='header-logo'>
<a href='index.php'><img src='images/trans.gif' alt='Print Your PowerPoint Home'/></a>
</div>
<div class='header-item' id='header-why'>
<a href='why-us.php'><img src='images/trans.gif' alt='Why Print Your PowerPoint?'/></a>
</div>
<div class='header-item' id='header-products'>
<a href='products.php'>
<img src='images/trans.gif' alt='Print Your PowerPoint Products'/>
</a>
</div>
<div class='header-item' id='header-about'>
<a href='about.php'>
<img src='images/trans.gif' alt='About Print Your PowerPoint?'/>
</a>
</div>
<div class='header-item' id='header-cart'>
<a href='cart.php'>
<img src='images/trans.gif' alt='View Cart'/>
</a>
</div>
<div class='header-right'>
<div class='header-item' id='header-create'>
<a href='cart.php'>
<img src='images/trans.gif' alt='Create Account'/>
</a>
</div>
<div class='header-item' id='header-account'>
<a href='cart.php'>
<img src='images/trans.gif' alt='My Account'/>
</a>
</div>
</div>
</div>
Here is the CSS:
div {
float: left;
}
#header {
width: 900px;
height: 85px;
}
.header-first {
background: top center no-repeat;
height: 70px;
margin: 7px 15px 7px 56px;
}
.header-item {
background: top center no-repeat;
height: 30px;
width: 101px;
margin: 45px 15px 7px 15px;
}
.header-item2 {
margin: 0px 20px;
width: 136px;
height: 132px;
background: top center no-repeat;
}
.header-right {
float: right;
margin-top: 46px;
height: 30px;
}
.header-item img {
height: 30px;
width: 101px;
}
.header-first img {
height: 70px;
}
.header-item:hover, .header-first:hover {
background: bottom center no-repeat;
}
#header .header-right .header-item {
margin:0px;
}
#header-logo {
background-image: url('images/print-your-powerpoint-logo-top.png');
}
#header-logo, #header-logo img {
width: 82px;
}
#header-why {
background-image: url('images/header-why-us.png');
}
#header-why, #header-why img {
width: 101px;
}
#header-products {
background-image: url('images/header-products.png');
}
#header-products, #header-products img {
width: 111px;
}
#header-about {
background-image: url('images/header-about.png');
}
#header-about, #header-about img {
width: 89px;
}
#header-cart {
background-image: url('images/header-cart.png');
}
#header-cart, #header-cart img {
width: 62px;
}
#header-create {
background-image: url('images/header-create.png');
}
#header-create, #header-create img {
width: 107px;
}
#header-account {
background-image: url('images/header-my-account.png');
border-left: 1px solid #C2B59B;
}
#header-account, #header-account img {
width: 107px;
}
#header.header-first.header-item.header-rightof above mentioned css are present in the css for Chrome on OSx. – Benjamin Udink ten Cate Nov 23 '11 at 0:19