1) sidebox images
You have the height of the images set to 80px, this is probably whats causing the problem, as the images are being resized proportionately, what you need to try is leaving the height value empty and set the width to 140px
2)
Internet explorer issue
Your code has weird errors
someone had dumped CSS code between the
head and body section like so
Code:
</head>
<style type="text/css">
<!--
.style12 {color: #000000; }
.style13 {
font-size: 16px;
font-weight: bold;
}
.style14 {font-size: 12px}
td.menu {
background: url(/includes/templates/bags01/images/navbar.jpg) white;
height:25px;
position:relative; top:-94px;
width:530px;
float:right;
padding-top:5px;
}
td.menu a{
font-family: League Gothic;
text-transform:uppercase ;
font-weight: bold;
color: #000;
text-decoration: none;
font-size: 11px ;
position:relative;top:;
}
td.menu a:hover{
color: #000;
text-decoration: underline;
}
td.bot a{
color: #fff;
text-decoration: none;
font-size: 14px;
}
td.bot a:hover{
color: #fff;
text-decoration: underline;
}
#ezpages{display:none;}
#searchbox{position:relative; left:650px;top:-150px;}
#headerbox {width:978px;height:250px;margin-bottom:5px;margin-left:auto;margin-right:auto;}
-->
</style>
<body id="indexBody">
Normally that code should be IN the head section, I don't know if thats what causing the issue but code in odd places will cause odd issues