This is the URL: http://www.thedigitaloffering.com/ascamping/index.html $10 If you can help me make everything the same in IE is it is in firefox. In IE the menu bar is too wide and when you click on the home link (Home is The only link that works currently so please don't try the others) I lose the top banner. Perhaps my IE is blocking the css code? I also noticed that when you put your mouse over the button it doesn't do what it does when you put your mouse over the button in Firefox. Any ideas on what is happening? Here is my CSS code
As far as the image disappearing when u click home, I'm pretty sure it's your javascript onLoad="P7_ExpMenu()" It's hard to tell what's going on without seeing what that function does
Here All Code you need: Save it into the same directory with your index.html <html> <head> <title></title> <style> body { margin:0 0 0 0; background-color : #048E8D ; } td { font-family: Arial, Helvetica, sans-serif; } .banner { background : URL(./images/asbackground2.jpg) ; width : 907px ; height : 237px ; } .menuout { background : URL(./images/light_south.jpg); height : 36px; width : 173px; font-family: Arial, Helvetica, sans-serif; font-size : 24px ; text-align : center ; vertical-align : middle ; } .menuover { background : URL(./images/light_south2.jpg); height : 36px; width : 173px; cursor : pointer ; font-family: Arial, Helvetica, sans-serif; font-size : 24px ; text-align : center ; vertical-align : middle ; } .main { background : URL(./images/barimage2.jpg) ; width : 907px ; } .barimagetop { background : URL(./images/barimagetop.jpg) ; height : 7px ; } .barimagebottom { background : URL(./images/barimagebottom.jpg) ; height : 29px ; } </style> <script> function fout(tg) { tg.className="menuout"; } function fover(tg) { tg.className="menuover"; } function goURL(URLS) { top.location.href=URLS; } </script> </head> <body> <center> <table cellpadding="0" cellspacing="0" width="907"> <tr> <td class="banner" colspan="5"> <br> </td> </tr> </table> <table cellpadding="0" cellspacing="0" class="main"> <tr> <td width="22"></td> <td class="menuout" onmouseout="fout(this);" onmouseover="fover(this);" onclick="goURL('index.html')"> Home </td> <td class="menuout" onmouseout="fout(this);" onmouseover="fover(this);" onclick="goURL('newrvs.html')"> New RV's </td> <td class="menuout" onmouseout="fout(this);" onmouseover="fover(this);" onclick="goURL('usedrvs.html')"> Used RV's </td> <td class="menuout" onmouseout="fout(this);" onmouseover="fover(this);" onclick="goURL('parts.html')"> Parts </td> <td class="menuout" onmouseout="fout(this);" onmouseover="fover(this);" onclick="goURL('service.html')"> Service </td> <td width="23px"></td> </tr> <tr> <td width="22"></td> <td colspan="5" class="barimagetop"> </td> <td width="24"></td> </tr> <tr> <td width="22"></td> <td colspan="5" align="center" valign="bottom"> <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br> <h1>Welcome</h1> </td> <td width="24"></td> </tr> <tr> <td class="barimagebottom" colspan="7"> </td> </tr> </table> </center> </body> </html> HTML: