$10 if you can help me

Discussion in 'HTML & Website Design' started by dubs89, May 19, 2008.

  1. #1
    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

     
    dubs89, May 19, 2008 IP
  2. randykougher

    randykougher Guest

    Messages:
    40
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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
     
    randykougher, May 19, 2008 IP
  3. pneulameiro

    pneulameiro Peon

    Messages:
    440
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Please include all .js files.
     
    pneulameiro, May 19, 2008 IP
  4. Ulquiorra

    Ulquiorra Peon

    Messages:
    422
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Just make it
    You are not including the function and it's not being used anyway.
     
    Ulquiorra, May 19, 2008 IP
  5. o0DarkEvil0o

    o0DarkEvil0o Peon

    Messages:
    11
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #5
    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:
     

    Attached Files:

    o0DarkEvil0o, May 19, 2008 IP
  6. dubs89

    dubs89 Peon

    Messages:
    231
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    o0DarkEvil0o wins. Please PM me your paypal

    great job btw
    thank you to everyone who tried
     
    dubs89, May 20, 2008 IP