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
200
Webtab creating Malformed HTML Table for Tabs
posted

I've been trying to eliminate this highlighted space between my tabs.  

Tabs

 

 

 

 

 

Upon looking at the actual HTML code that was being produced it looks like the problem has something to do with the fact that WebTab is creating a malformed HTML table:

 <table id="ctl00_ContentPlaceHolder1_uwTabs_tbl" cellspacing="0" cellpadding="0" border="0" height="">
            <tr>
                <td nowrap="true" id="ctl00_ContentPlaceHolder1_uwTabstd0" align="center" class="ctl00_ContentPlaceHolder1_uwTabs_2" height="21px" width="140px">Details</td>
                <tr><td nowrap="true" id="ctl00_ContentPlaceHolder1_uwTabstd0R" class="ctl00_ContentPlaceHolder1_uwTabs_2R" height="5px" unselectable="on">&nbsp;</td></tr>
            </tr>

or simplified:

    <table>
            <tr>
                <td>Details</td>
                <tr><td>&nbsp;</td></tr>
             </tr>

Its appararent that WebTabs is creating a new Table Row before it closes the prior Table Row. 

 Has anyone else noticed this?
Has anyone managed to eliminate it? 
Is this a bug? 
Has this bug been addressed in a newer version of IG?

Thanks for your help.