Quote:
I'm curious about finding two different names for the header image container in the fixes lmilesw came up with:
div#imagecontainer {background-size: 100% !important;} - Mar 19, 2012, 10:00 AM
div.header-image-container img {width: 100%;} - Aug 30, 2010, 02:24 PM
Is that area now possibly identified as something else?
|
They both reference the same thing, one uses the 'ID' of the <div...>, the other references the 'CLASS' of the <div...>
You will want to replace the %image with
HTML Code:
<div id="my-image">
<img src='http://yourdomain.com/wp-content/path to image/imagename.ext' />
</div>
using the appropriate path and file name then add to the CSS Inserts option
HTML Code:
div#my-image img {height: 100%; width: 100%;}
note: you will not be able to use the other header image options since you have 'rolled your own' header image at this point.