HTML or PHP visibility div tag problem in IE - Macromedia Dreamweaver

This is a discussion on HTML or PHP visibility div tag problem in IE - Macromedia Dreamweaver ; Hi, I have a PHP search function on a travel site a programmer did for me. When you look at it in FF and Safari, it looks fine. But in IE, there is a big blank space where the calendar ...

+ Reply to Thread
Results 1 to 2 of 2

HTML or PHP visibility div tag problem in IE

  1. Default HTML or PHP visibility div tag problem in IE

    Hi,
    I have a PHP search function on a travel site a programmer did for me. When
    you look at it in FF and Safari, it looks fine. But in IE, there is a big blank
    space where the calendar function goes. He has the div tag set to
    visibility:hidden. Any ideas how to make it look right in IE as well?? Any
    help would be appreciated! The PHP code is below:

    He thinks the problem is here in this part of the code:

    <div id="kalendar" style="visibility:hidden; width:0px; height:0px; border:0;">
    //then goes some tables
    </div>

    Any help would be much appreciated...we are stumped!

    Thanks


  2. Default Re: HTML or PHP visibility div tag problem in IE

    Change this -

    visibility:hidden;

    to this -

    display:none;

    But you will probably have to modify your routine that is making that
    element be visible to change its usages.

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs, Tutorials & Resources
    ==================


    "Lvanhoff" <webforumsuser@macromedia.com> wrote in message
    news:geib9s$1ka$1@forums.macromedia.com...
    > Hi,
    > I have a PHP search function on a travel site a programmer did for me.
    > When
    > you look at it in FF and Safari, it looks fine. But in IE, there is a big
    > blank
    > space where the calendar function goes. He has the div tag set to
    > visibility:hidden. Any ideas how to make it look right in IE as well??
    > Any
    > help would be appreciated! The PHP code is below:
    >
    > He thinks the problem is here in this part of the code:
    >
    > <div id="kalendar" style="visibility:hidden; width:0px; height:0px;
    > border:0;">
    > //then goes some tables
    > </div>
    >
    > Any help would be much appreciated...we are stumped!
    >
    > Thanks
    >



+ Reply to Thread