Ooops, not the problem at all. What you have is an illegal entry in your stylesheet (highlighted red):
Code:
<style type="text/css">
#prodfocus
{
text-align: center;
padding: 3px;
font-family: Verdana, Arial;
color: #ACACAC;
font-size: 20pt;
font-weight: bold;
width: 300px;
}
#container
{
width: 600px;
background-color: #ffffff;
border: 2px solid #ACACAC;
align: center;
}
#prod
{
width: 100px;
}
#ahreflayout
{
text-align: left;
padding: 5px;
font-family: Verdana, Arial;
text-decoration: none;
color: #ff9800;
font-size: 10pt;
}
#prodrow
{
border: 2px solid #ACACAC;
text-align: center;
padding: 3px;
font-family: Verdana, Arial;
color: #acacac;
font-size: 10pt;
height: 60px;
}
<style type="text/css">
#hintbox{ /*CSS for pop up hint box */
position:absolute;
top: 0;
background-color: lightyellow;
width: 150px; /*Default width of hint.*/
padding: 3px;
border:1px solid black;
font:normal 11px Verdana;
line-height:18px;
z-index:100;
border-right: 3px solid black;
border-bottom: 3px solid black;
visibility: hidden;
}
.hintanchor{ /*CSS for link that shows hint onmouseover*/
font-weight: bold;
color: navy;
margin: 3px 8px;
text-align: left;
padding: 5px;
font-family: Verdana, Arial;
text-decoration: none;
color: #ff9800;
font-size: 10pt;
}
</style>
Remove it. The green one is invalid so, might as well get rid of it too but, it isn't causing the problem.
Bookmarks