Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

A little help with my webbie plz

  • 05-11-2001 04:50PM
    #1
    Registered Users, Registered Users 2 Posts: 1,684 ✭✭✭


    Ok i did a Menu at first it worked in both internet explorer and netscape but now wont work so here is..

    menu.htm
    <html>
    
    <head>
    
    </head>
    
    
    <body bgcolor="#686868">
    <br>
    <br><br><br><br><br><br><br><br><br><br><br><br><br>
    <table>
    <tr>
        <td bgcolor="#233141">&nbsp;<font face=arial size=2 color=white><b>Counter-Strike</b></font></td>
    </tr>
    <tr>
        <td bgcolor=#9b9b9b background="">&nbsp;&nbsp;<a class=nav href="Counter-Strike.html" TARGET="main">Main Page</a></td>
    </tr>
    <tr>
        <td bgcolor=#9b9b9b onmouseover="this.style.backgroundColor='#b0b0b0';" onmouseout="this.style.backgroundColor='#9b9b9b';" background="">&nbsp;&nbsp;<a class=nav href="AboutCS.html"  TARGET="main">About CS</a></td>
    </tr>
    
    <tr>
        <td bgcolor=#9b9b9b onmouseover="this.style.backgroundColor='#b0b0b0';" onmouseout="this.style.backgroundColor='#9b9b9b';" background="">&nbsp;&nbsp;<a class=nav href="CSMaps.html"  TARGET="main">The CS Maps</a></td>
    </tr>
    <tr>
        <td bgcolor=#9b9b9b onmouseover="this.style.backgroundColor='#b0b0b0';" onmouseout="this.style.backgroundColor='#9b9b9b';" background="">&nbsp;&nbsp;<a class=nav href="arsenal.html"  TARGET="main">The CS Arsenal</a></td>
    </tr>
    
    <tr>
        <tr>
        <td bgcolor="#233141">&nbsp;<font face=arial size=2 color=white><b>By John Griffin</b></font></td>
    </tr>
    
    
    
    </html>
    



    index.htm
    <html>
    <head>
    <title>Untitled Document</title>
    </head>
    
    <frameset cols="137,*" scrolling="no" frameborder="NO" border="0" framespacing="0"> 
      <frame name="menu" src="menu.htm" scrolling="no">
      <frame name="main" src="main.htm">
    </frameset>
    </html>
    

    any ideas?
    plz i am really stuck on this. i know that in netscape it wont change color but i can live with that.


Comments

  • Closed Accounts Posts: 512 ✭✭✭beaver


    What's your definition of working? What do you want it to do?

    The td BG colours are changing on mouseover in both IE5.5 and Netscape6.

    I don't know why you're calling classes as you haven't linked to or defined any anywhere?!

    Also, non-web safe colours? Tsk, tsk...


  • Registered Users, Registered Users 2 Posts: 7,626 ✭✭✭smoke.me.a.kipper


    i dont see the need to make the backgrounds color rollover. only works in recent browsers and static links work just as well.


  • Closed Accounts Posts: 512 ✭✭✭beaver


    Not true. A visual aid to help you know when you're over a navigational element - how is that a bad thing? Sure, it's not difficult usually to know if something is a link, but making the web easier to use is not a bad thing.

    In addition, CSS won't screw you around if you're looking at it with an older browser. Things will simply appear without the intended formatting.


  • Registered Users, Registered Users 2 Posts: 7,626 ✭✭✭smoke.me.a.kipper


    fair enough beaver.

    Presto: 'working' code...
    <html>
    <head>
    </head>
    <body bgcolor="#686868">
    <br><br><br><br><br><br><br><br><br><br><br><br><br><br>
    
    
    <table>
    
    <tr>
    <td bgcolor="#233141">
    <font face=arial size=2 color=white><b>Counter-Strike</b></font>
    </td>
    </tr>
    
    <tr>
        <td bgcolor=#9b9b9b onmouseover="this.style.backgroundColor='#b0b0b0';" onmouseout="this.style.backgroundColor='#9b9b9b';" background=""> <font face=arial size=2> <a href="Counter-Strike.html" TARGET="main">Main Page</a></td>
    </tr>
    
    <tr>
        <td bgcolor=#9b9b9b onmouseover="this.style.backgroundColor='#b0b0b0';" onmouseout="this.style.backgroundColor='#9b9b9b';" background=""> <font face=arial size=2> <a href="AboutCS.html" TARGET="main">About CS</a></td>
    </tr>
    
    <tr>
        <td bgcolor=#9b9b9b onmouseover="this.style.backgroundColor='#b0b0b0';" onmouseout="this.style.backgroundColor='#9b9b9b';" background=""> <font face=arial size=2> <a href="CSMaps.html" TARGET="main">The CS Maps</a></td>
    </tr>
    
    <tr>
        <td bgcolor=#9b9b9b onmouseover="this.style.backgroundColor='#b0b0b0';" onmouseout="this.style.backgroundColor='#9b9b9b';" background=""> <font face=arial size=2> <a href="arsenal.html" TARGET="main">The CS Arsenal</a></td>
    </tr>
    
    <tr>
    <td bgcolor="#233141"> <font face=arial size=2 color=white><b>By John Griffin</b></font></td>
    </tr>
    </table>
    </body>
    </html>
    


Advertisement