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
300
Tabs in WebTab control not rendering correctly in Chrome
posted

Is there any work-around for the render problem in how the Tabs display in Google Chrome?  Under IE and Firefox the tabs render correctly but in Chrome a rectangular 'Chip' of background just under the tabs text bleeds through the tab background.  All the IG web samples exhibit this same behavior when run under Chrome.

Examples:

IE:

 

Chrome:

Parents
  • 24497
    Suggested Answer
    posted

    Hi Reinhart,

    Thank you for report.
    That issue was already reported and fixed. Since it is not part of dll, but css attributes, you may fix that by editing ig_webtab.css file which is probably located at ~/ig_res/Default/ig_webtab.css.
    Note: if you use specific Xxxx styleset, then location will be /ig_res/Xxxx/ig_webtab.css and class names will be .igtab_XxxxName.

    You need following changes:

    1. Add "height:100%"
    .igtab_THTail
    {
     ...current attributes
     height:100%;
    }

    2. Add "no-repeat"
    .igtab_THTailHov
    {
     background: transparent url(./images/igtab_THRightHov.gif) no-repeat;
     background-position: top right;
    }

    3. Remove "background-color"
    .igtab_THTabHov
    {
     background-position: 0px -50px;
     background-color: #ff9e33;
    }

Reply Children
No Data