Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
145
UltraWebTab, Version 6.3, not rendering properly in IE7
posted

We're using version 6.3.20063.53 of the UltraWebTab.  It renders correctly in IE6 but in IE7 it will only display some of the data in the tab.  It looks like the tab control itself has rendered but data is cut off and the tab won't scroll or expand vertically to display all of the data.  Has anyone else come across this?  Is there a solution?

Thanks!

Parents
No Data
Reply
  • 10880
    posted

    It could be due to IE7 releasing after the release of 6.3.20063.53.  I would recommend that you either install a hotfix or upgrade to a later version of the product.

    If you cannot upgrade, you may want to play with setting the height on the html, body, form, and the tab control.

    Something like this:

    <style type="text/css">
        html,body,form{
          margin:0;
          padding:0;
          height:100%;
          border:none
    }
    </style>

Children