Archive for the ‘Internet Explorer’ Category
Windows 2000 & XP SP2 Will Not Supported By Microsoft After This July
According to Microsoft support Lifecycle policy for Window service packs which states that “when a new service pack is released, Microsoft will provide 24 months of support for the previous service pack for products that belong to the Windows product family“, The company announce that support for Windows 2000 and Windows XP SP2 will end of Microsoft’s official tech support on July 13th.
This means users of both operating systems will no longer receive security updates, support assistance, or help from paid support. But still have access to self-help online support for at least another year.
To continue support, Windows 2000 users will need to install the new recent version of Windows while XP SP2 users can upgrade to Windows XP SP3 via Windows Internet explorer Update utility.
Internet Explorer Z-Index Bug
Problem :
If you are working on hover menus with sub-menus & under it there is an image. When you hover menu & expanded sub-menus hide behind image as both div’s are positioned well with the right z-index property.
In Internet Explorer positioned elements generate a new stacking context, starting with a z-index value of 0. Therefore z-index doesn’t work correctly.
Fix :
To fix this bug, Give parent div a higher z-index value
<div style="z-index: 3000">
<div style="position:absolute;z-index:1000;">
<a href="#">Page</a>
...
</div>
</div>
<img style="position:absolute" src="image.png" />

