|
|
 |
Re: FN-FORUM: css positioning question
date posted 20th August 2004 15:28
At 2:31 pm +0000 20/8/04, Dan Cook wrote:
>I'm using the following to attach an image to the top right of a page. At
>1024x768 and higher I want it to be in the top right, but at 800x600 and
>lower, I want it to stay where it was at the higher res. I hope this makes
>some kind of sense?!? Is it possible? Any takers?
You don't need to do this as a background image. CSS provides you with layers.
Try:
.foo {
position:absolute;
right:0;
top:0;
}
Then position the rest of your elements on top of this.
ColinR
--
---------------------------------
Colin Rainsforth, BA (hons)
Freelance Graphic Designer
Web | Print | CDROM
Tel/Fax: 01993 882814
http://www.paneris.org/colinr/
email: [EMAIL REMOVED]
|
 |
|