Results 1 to 5 of 5

Thread: Now why doesn't this background image show up?

  1. #1
    Join Date
    Mar 2007
    Posts
    113
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Now why doesn't this background image show up?

    I'm trying to get a background image to show up but for some reason it won't.

    The CSS:

    Code:
    #head {
    	background: #000000 url("http://www.cyanideperfection.net/test/wp-content/themes/default/images/bluehead.PNG");
    	}
    The page is http://www.cyanideperfection.net/test/index.php

  2. #2
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default

    Try the following CSS
    Code:
    #head{
    	background-image: url("http://www.cyanideperfection.net/test/wp-content/themes/default/images/bluehead.PNG");
    	background-repeat: no-repeat;
    	width:800px; 
    	height:200px;
    	background-color: #000;
    }

  3. #3
    Join Date
    Mar 2007
    Posts
    113
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Still not working!

  4. #4
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default

    Can you provide me a link to your testing page in which it is not working. The link you've provided earlier shows the mentioned image.

  5. #5
    Join Date
    Jun 2007
    Location
    Alabama
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Code:
    #head{
    	background-image: url('http://www.cyanideperfection.net/test/wp-content/themes/default/images/bluehead.PNG');
    	background-repeat: no-repeat;
    	width:800px; 
    	height:200px;
    	background-color: #00000;
    }

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •