Meta 13 Project Blog
  • Home
  • Links
  • CMS
  • CSS
  • Ecom
  • Email
  • Flash
  • Google
  • HTML
  • Javascript
  • OS
  • PHP
  • SEO
  • SQL
Browse: Home / IE7

IE7

Internet Explorer Z-Index Bug

By Bryce on June 18, 2010

Internet Explorer has a z-index bug and here are a couple of fixes.

Give the containing layer a higher z-index level.

<div style="z-index: 3000">
 <div style="position:absolute;z-index:1000;">
 <a href="#">Page</a>
 ...
 </div>
</div>
<img style="position:absolute" src="myimage.png" />

Src: http://brenelz.com/blog/squish-the-internet-explorer-z-index-bug/

Fix it with jQuery:

$(function() {
	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});

Src: http://www.vancelucas.com/blog/fixing-ie7-z-index-issues-with-jquery/

Posted in CSS, Javascript | Tagged IE7, jQuery | Leave a response

CSS Targets For IE6 & IE7

By Bryce on January 22, 2010

Using the following selectors you can directly target IE6 and IE7. This can be used to fix small css issues that those browsers bring up.

#someElement {
 background: red; /* modern browsers */
 *background: green; /* IE 7 and below */
 _background: yellow; /* IE6 exclusively */
}

Posted in CSS | Tagged IE6, IE7 | 2 Responses

Tags

.htaccess Advanced Custom Fields Bower c5 cms Composer Concrete 5 Concrete5 Cron CSS3 Cycle Cycle2 fancybox FancyBox2 Foundation Genesis Google Fonts Google Maps Google Webfonts Google Web Fonts Gravity Forms Grunt html5 HTML5 Boilerplate IE7 iPad iPhone jQuery lightbox Lists Magento Media Queries mobile pdf Plesk PrettyPhoto Responsive SASS SCSS static block Twitter typekit Video WordPress YouTube

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Recent Comments

  • Bryce on Responsive Email Templates
  • Justin on Mail Server Settings (Microsoft365)
  • Justin on Mail Server Settings (Microsoft365)
  • Bryce on Mail Server Settings (Microsoft365)
  • Justin on Mail Server Settings (Microsoft365)

Authors

  • Aaron Huisinga
  • Bryce
  • Darin
  • Jason
  • Josh
  • Justin
  • master
  • Nathan
  • nick
  • Paul

Archives

  • March 2016
  • July 2015
  • March 2015
  • February 2015
  • January 2015
  • December 2014
  • September 2014
  • July 2014
  • June 2014
  • May 2014
  • December 2013
  • November 2013

Copyright © 2023 Meta 13 Project Blog. Powered by WordPress and Hybrid.