Results 1 to 4 of 4

Thread: Cell Hover in IE - Vertically Centering the Text

  1. #1
    Join Date
    Nov 2009
    Location
    Isfahan, Iran
    Posts
    229
    Thanks
    46
    Thanked 1 Time in 1 Post

    Default Cell Hover in IE - Vertically Centering the Text

    Hi,

    The following menu doesn't work in IE6:

    Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
    <html> 
    <head> 
    
    <style type="text/css"> 
    .tablemenu { 
                font-family: "Century Gothic"; 
                font-size: 14px; 
                font-weight: bold; 
                font-style: normal; 
                text-align:center; 
                color: #FFFFFF; 
                background-image:url('http://sites.google.com/a/loquemasimporta.com/web/MenuBckg.png');
    } 
    .overmenu{ 
                cursor: pointer; 
                color: #FFFFFF; 
    } 
    
    #cell{background-image:url('../Images/MenuBckg.png'); background-repeat:repeat-x;} 
    #cell:hover{background-image:none; background-color:#999999;} 
    </style> 
    </head> 
    <body> 
    
    <table style="width: 900px; height: 50px" class="tablemenu"> 
    <tr> 
    <td id="cell" class="overmenu" onclick="parent.location='http://www.loquemasimporta.com'" >Home</td> 
    <td id="cell" class="overmenu" onclick="parent.location='http://www.loquemasimporta.com/profile'" >Perfil</td> 
    <td id="cell" class="overmenu" onclick="parent.location='http://www.loquemasimporta.com/servicios'" >Servicios</td> 
    <td id="cell" class="overmenu" onclick="parent.location='http://blog.loquemasimporta.com'" >Blog</td> 
    <td id="cell" class="overmenu" onclick="parent.location='http://dir.mortellmarsol.com'" >Directorio</td> 
    <td id="cell" class="overmenu" onclick="parent.location='http://www.loquemasimporta.com/home/tv'" >Chat</td> 
    <td id="cell" class="overmenu" onclick="parent.location='http://www.loquemasimporta.com/home/tv'" >Programas</td> 
    <td id="cell" class="overmenu" onclick="parent.location='http://www.loquemasimporta.com/contact'" >Contacto</td> 
    </tr> 
    </table> 
    
    
    </body> 
    </html>

    I made some changes and now it seems to be working in all major browsers:

    Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
    <html> 
    <head>
    <title>Menu</title>
    
    <style type="text/css"> 
    table {width:900px; height:50px; font:bold 14px Century Gothic; text-align:center; background-image:url('http://sites.google.com/a/loquemasimporta.com/web/MenuBckg.png')}
    a {display:block; height:50px; color: #FFFFFF; text-decoration:none}
    a:hover {background-color:#999999} 
    </style> 
    
    </head> 
    <body> 
    
    <table border="0" cellpadding="0" cellspacing="0"> 
    <tr> 
    <td><a href="http://www.loquemasimporta.com">Home</a></td>
    <td><a href="http://www.loquemasimporta.com/profile">Perfil</a></td>
    <td><a href="http://www.loquemasimporta.com/servicios">Servicios</a></td>
    <td><a href="http://blog.loquemasimporta.com">Blog</a></td>
    <td><a href="http://dir.mortellmarsol.com">Directorio</a></td>
    <td><a href="http://www.loquemasimporta.com/home/tv">Chat</a></td>
    <td><a href="http://www.loquemasimporta.com/home/tv">Programas</a></td>
    <td><a href="http://www.loquemasimporta.com/contact">Contacto</a></td>
     
    </tr> 
    </table> 
    
    
    </body> 
    </html>
    However, now I don't know how to vertically center the text.

    Any help is appreciated!
    Rain Lover

  2. #2
    Join Date
    Nov 2006
    Location
    chertsey, a small town 25 miles south west of london, england.
    Posts
    1,920
    Thanks
    2
    Thanked 267 Times in 262 Posts

    Default

    Hi there Rain Lover,

    try adding line-height:50px; to the your a set of rules.

    coothead

  3. The Following User Says Thank You to coothead For This Useful Post:

    Rain Lover (08-30-2010)

  4. #3
    Join Date
    Nov 2009
    Location
    Isfahan, Iran
    Posts
    229
    Thanks
    46
    Thanked 1 Time in 1 Post

    Default

    Quote Originally Posted by coothead View Post
    Hi there Rain Lover,

    try adding line-height:50px; to the your a set of rules.

    coothead
    You're fantastic! Thanks so much!

  5. #4
    Join Date
    Nov 2006
    Location
    chertsey, a small town 25 miles south west of london, england.
    Posts
    1,920
    Thanks
    2
    Thanked 267 Times in 262 Posts

    Default

    No problem, you're very welcome.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •