Richard,

On Jan 10, 2006, at 10:12 AM, Richard Brown wrote:

> Hi All
>
> I have a couple of images on this site:
> http://www.uzellacourtantiques.co.uk/
> http://www.uzellacourtantiques.co.uk/wp-content/themes/antiques/
> style.css
>
> The first image is the one that sits in the top left. I would like the
> image to also appear in all the other corners. Is this possible please?
I didn't see a reply to this, if I missed it, you can ignore this.

If it needs to work in ie/win, then the only way is extra markup.  You 
can sometimes manage two by styleing the html element separately...
html {
        background: #A30D15 url(images/bkgdcorner1.jpg) no-repeat top left;
}

body {
        min-width: 600px;
        background: transparent url(images/bkgdcorner1.jpg) no-repeat top 
right;
}
If ie users don't have to see the other two images you could use 
generated content...
#wrap:before {
        position: absolute;
        left: 0;
        bottom: 0;
        width: picwidth;
        height: picheight;
        background-image: url(whatever);
}
#wrap:after {
        position: absolute;
        right: 0;
        bottom: 0;
        width: picwidth;
        height: picheight;
        background-image: url(whatever);
}

The big downside to this is that you can end up covering up content if 
you're not careful.

> The second image is the one that sits in the nav bar at the bottom.
> Rather than sit alongside the text, I would like it to sit on top. How
> do I do this please?

set the images display to block.

hth
-- 
Roger Roelofs
"Remember, if you’re headed in the wrong direction,
        God allows U-turns!"
          ~Allison Gappa Bottke
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to