• Been working on a website – aust-investor.com .

    The full site shows up on FF, Chrome and Safari. However, in IE7 & IE8 the header does not show up. It is only the header part that is an issue.

    Any help would be appreciated.

Viewing 1 replies (of 1 total)
  • older versions of IE don’t understand multiple css3 background images; add a ‘normal’ background image declaration to the style before the ‘backround-image’ line.

    .art-header {
    	-webkit-box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.25);
    	box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.25);
    	border-top: none;
    	margin: 0 auto;
    	height: 159px;
    	background-image: url('images/object1677220752.png'),url('images/object2061046046.png'),url('images/object658303953.png'),url('images/object923480902.png'), url('images/header.jpg');
    	background-position: 402px 92px,848px 4px,-10px -2px,15px 37px, 0 0;
    	background-repeat: no-repeat;
    	position: relative;
    	width: 1000px;
    	z-index: auto !important;
    }

    for details, possibly contact the creator of your custom theme, or ask at a dedicated css forum https://csscreator.com/forum

Viewing 1 replies (of 1 total)
  • The topic ‘Only Header Not Showing up on IE7 & IE8’ is closed to new replies.