Double background image renders in all browser except IE - Time Senitive Issue
looking help. have hurry put html5 website up, unfortunately have make 1 created using sitebuilder template package. original site http://www.ourvietnamvets.com
i using dreamweaver cs5.5, , validated code structure wc3 , received no errors or warnings.
ie renders background color , not double background image.
css coding
@charset "utf-8";
body {
margin: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 14px;
line-height: 20px;
background-color: #060b60;
height: 400px;
width: 992px;
background-image: url(../images/bg_bp88.jpg), url(../images/bg_jl6x.jpg);
background-position: center top, left top;
background-repeat: no-repeat, repeat-x;
margin-left:auto;
margin-right:auto;
position:!important;
}
html5 coding
!doctype html>
<html>
<head>
<meta charset="utf-8">
<!-- templatebegineditable name="doctitle" -->
<title>untitled document</title>
<!-- templateendeditable -->
<!-- templatebegineditable name="head" -->
<!-- templateendeditable -->
<link href="css/twocolfixhdr.css" rel="stylesheet" type="text/css">
<script src="spryassets/sprymenubar.js" type="text/javascript"></script>
<link href="spryassets/sprymenubarvertical.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="special">our vietnam vets</div>
<div class="container">
<div class="sidebar1">
is there ie hack or should using? desparately need on this. have have entire site before end of week. old site referencing old event last year , new site has email blast , lots of marketing fundraiser go out monday morning.
thanks in advance can offer help.
daisy
ie doesn't support css level 3 properties.
the workaround put 1 background-image in html selector , other in body selector this:
html {
background: url(../images/bg_bp88.jpg) no-repeat center top;
}
body {
background: url(../images/bg_jl6x.jpg) repeat-x left top;
}
nancy o.
More discussions in Dreamweaver support forum
adobe
Comments
Post a Comment