It is covering the entire body and html portion of the page, as per your style:
Code:
body,
html {
height: 35px;
background-image: url(/bill_lyons/images/main/bkgd.jpg);
background-repeat: repeat;
width: 900px;
background-color: #0266B4;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: .9em;
margin: 0 auto;
}
If you use a lot of style on the html and/or body selectors, you run the risk of this (or some similar) problem in some browsers.
Non-supporting browsers will open the the larger image. That is, if the script isn't supported, the href in the links will be followed as a normal link.
Bookmarks