i have done everything i know to change the header image. can someone please help with this. i already uploaded the new image to the image folder. it is called 'ceeheader.jpg' and the original image shown in the html below is called 'Header' . i replaced Header with ceeheader, but it still does not show up. Please kindly help. <body> <div class="PageBackgroundGradient"></div> <div class="PageBackgroundGlare"> <div class="PageBackgroundGlareImage"></div> </div> <div class="Main"> <div class="Sheet"> <div class="Sheet-tl"></div> <div class="Sheet-tr"></div> <div class="Sheet-bl"></div> <div class="Sheet-br"></div> <div class="Sheet-tc"></div> <div class="Sheet-bc"></div> <div class="Sheet-cl"></div> <div class="Sheet-cr"></div> <div class="Sheet-cc"></div> <div class="Sheet-body"> <jdoc:include type="modules" name="user3" /> <div class="Header"> <div class="Header-jpeg"></div> <div class="logo"> <h1 id="name-text" class="logo-name"><a href="<?php echo $baseUrl; ?>/">envision</a></h1> <div id="slogan-text" class="logo-text">express...</div> </div>
Sounds like either your new image is not in the same folder as the old image, the image name is not changed in the css, or you could just need to clear your browser cache.
the new image is in the same folder as the old one, and i just changed the template CSS as well as shown below. cleared cache too, but still not working /* begin Header */ div.Header { margin: 0 auto; position: relative; z-index:0; width: 988px; height: 250px; } div.Header-jpeg { position: absolute; z-index:-1; top: 0; left: 0; width: 988px; height: 250px; background-image: url('../images/ceeheader.jpg'); background-repeat: no-repeat; background-position: center center; } /* end Header */
It looks like this is WordPress. So is ceeheader.jpg in the themes image folder? If so the try changing the background from background-image: url('../images/ceeheader.jpg'); to background-image: url('images/ceeheader.jpg');
its probably a faulty template coz none of that worked. thanks for your help though, i'll try some other things, and if nothing works i'll just download a different theme.
the new image is in the same folder as the old one, and i just changed the template CSS as well as shown below. cleared cache too, but still not working /* begin Header */ div.Header { margin: 0 auto; position: relative; z-index:0; width: 988px; height: 250px; } div.Header-jpeg { position: absolute; z-index:-1; top: 0; left: 0; width: 988px; height: 250px; background-image: url('../images/ceeheader.jpg'); background-repeat: no-repeat; background-position: center center; } /* end Header */