topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday March 28, 2024, 6:22 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: Links are invisible in IE6 but appear in FF  (Read 3476 times)

sri

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 689
    • View Profile
    • Sridhar Katakam
    • Read more about this member.
    • Donate to Member
Links are invisible in IE6 but appear in FF
« on: December 28, 2006, 09:19 PM »
At this page of my new site, URL Form and Manage Cookies links appear in Firefox:

whereas in IE 6, the links don't appear but when the mouse is over them, the cursor turns into hand type and the links are clickable:

proxylinks.jpg

Here is the code being used:

<div id="menu">
          <a href="<?php echo $_SERVER['PHP_SELF'?>">URL Form</a> |
          <a href="?action=cookies">Manage Cookies</a>
         </div>

#menu
{
    -moz-border-radius: 0 30px 0 0;
    /* border-left: 1px solid #CCCDD7;
    border-bottom: 1px solid #CCCDD7; */
    float: right;
    height: 20px;
    /* background-color: #ffffff;
    color: #336600; */
    font-size:80%;
}

Any idea as to what's wrong?
<a href="https://sridharkatakam.com">My blog</a>
« Last Edit: December 28, 2006, 09:25 PM by sri »

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: Links are invisible in IE6 but appear in FF
« Reply #1 on: December 28, 2006, 09:22 PM »
try some tests sri, try changing the div id to "menu_disabled" in the html to see if its a css problem.
try getting rid of the hrefs in the html to see if its the php hrefs..
experiment to localize the problem.

crono

  • Charter Honorary Member
  • Joined in 2005
  • ***
  • Posts: 179
    • View Profile
    • Donate to Member
Re: Links are invisible in IE6 but appear in FF
« Reply #2 on: January 04, 2007, 09:40 AM »
Hi,

adding
#menu_right{
position:absolute;
}
to your "ie6_or_less.css" should fix it :)