[css-d] background-image doesn't show

2005-10-10 Thread Marian
Hi everybody,
I have a problem with displaying image into a web
page.
Take a look at : www.tanase.it

The content has an id div#content
Now, I need to put into this grey box on the
bottom-right an image who represent something like a
curl page.
I need to position exactly !

My style for #content is:

#content {
  padding: 3px;
  margin-right: 215px;
  border:1px solid #eee;
  background-color: #fafafa;
  background-image: url(../images/curl.jpg);
  background-repeat: no-repeat;
  background-position: 100% 100%;}

Where do I'm wrong please ?




__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com
__
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/


RE: [css-d] background-image doesn't show

2005-10-10 Thread Dennis Bixler
Try it with 

background-position: right bottom;}

at least it worked in a local test

Dennis Bixler

-Original Message-
From: Marian [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 10, 2005 11:04 AM
To: css-d@lists.css-discuss.org
Subject: [css-d] background-image doesn't show

Hi everybody,
I have a problem with displaying image into a web
page.
Take a look at : www.tanase.it

The content has an id div#content
Now, I need to put into this grey box on the
bottom-right an image who represent something like a
curl page.
I need to position exactly !

My style for #content is:

#content {
  padding: 3px;
  margin-right: 215px;
  border:1px solid #eee;
  background-color: #fafafa;
  background-image: url(../images/curl.jpg);
  background-repeat: no-repeat;
  background-position: 100% 100%;}

Where do I'm wrong please ?




__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com
__
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/

__
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/


Re: [css-d] background-image doesn't show

2005-10-10 Thread Tom Livingston

On Mon, 10 Oct 2005 11:03:39 -0400, Marian [EMAIL PROTECTED] wrote:


www.tanase.it



Off the top of my head, make sure the image path is in relation to the  
stylesheet not the page. This has caught me a couple times...

--
Tom Livingston
Senior Multimedia Artist
Media Logic
www.mlinc.com

Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
__
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/


Re: [css-d] background-image doesn't show

2005-10-10 Thread Gunlaug Sørtun

Marian wrote:


www.tanase.it


Just a minor file-name/type error:

I find:
background-image: url(../images/curl.htm);
... in your stylesheet.

Correct it to:
background-image: url(../images/curl.jpg);
... and make sure the image is present with that name/type.

The other styles are fine, but you can write background more compact as:

  background: #fafafa url(../images/curl.jpg) no-repeat 100% 100%;


regards
Georg
--
http://www.gunlaug.no
__
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/