Hi,

If you resize Chrome Window by decreasing the width enough, Chrome adds a style attribute width="0%" to td element of placeholder. As a result, after you increase the width of Chrome window, the other td elements of menubar expands and window buttons seem weird.

How can we fix this problem? I attached before and after images of menu bar.

After resizing html:

<table border="0" cellspacing="2" cellpadding="0" width="100%" height="100%" style="table-layout:fixed">	<tbody>
		<tr>
			<td class="dskTskBarButNrml" title="" style="width: 150px;">
				<div style="overflow:hidden; text-overflow: ellipsis; width:100%"><nobr> <img src="/Rhapsody.Web.UI.Presenter/ISRes.axd?D/is_window-16.gif" align="absmiddle"> Talep Yönetimi</nobr></div>
				<div id="divCloseTab" style="top: 3px; left: 259px; position: absolute; display: none;"><img style="text-align:right;vertical-align:top;width:13px;height:13px;cursor:pointer" title="Kapat" src="/Images/WebDesktop/CloseSmall.gif" onclick="closeWindowWithSaveControl2('Lst1400');"></div>
			</td>
			<td class="dskTskBarButNrml" title="" style="width: 150px;">
				<div style="overflow:hidden; text-overflow: ellipsis; width:100%"><nobr> <img src="/Rhapsody.Web.UI.Presenter/ISRes.axd?D/is_window-16.gif" align="absmiddle"> Varlık Yönetimi</nobr></div>
				<div id="divCloseTab" style="top: 3px; left: 1189px; position: absolute; display: none;"><img style="text-align:right;vertical-align:top;width:13px;height:13px;cursor:pointer" title="Kapat" src="/Images/WebDesktop/CloseSmall.gif" onclick="closeWindowWithSaveControl2('Lst508');"></div>
			</td>
			<td placeholder="true" width="100%" style="width: 0%;"> </td>
		</tr>
	</tbody>
</table>

 How can I fix this problem?