Page 3 of 3 FirstFirst 123
Results 21 to 23 of 23

Thread: Kissing trail

  1. #21
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by Peppy
    Now everything but the background is fine!
    Excellent!

    What did I overlook now?
    You nested two rules (indented for clarity):

    Code:
    .kisser {
      position:absolute;
      top:0;
      left:0;
      visibility:hidden;
      z-index: 45;
    
      body {
        background: url(http://free.pages.at/lifeisbutadream/missu/image/satinblue.jpg);
      }
    }
    This is illegal in CSS. It should be written:

    Code:
    .kisser {
      position:absolute;
      top:0;
      left:0;
      visibility:hidden;
      z-index: 45;
    }
    body {
      background: url(http://free.pages.at/lifeisbutadream/missu/image/satinblue.jpg);
    }
    Notice the difference in the position of the braces.

    Mike

  2. #22
    Join Date
    Jan 2005
    Posts
    58
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Thank you, thank you a thousand times

    I - or better we - did it finally!

    Maybe I'll be back one day!

    Bye!
    Last edited by Peppy; 02-02-2005 at 05:35 PM.

  3. #23
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by Peppy
    Thank you, thank you a thousand times
    You're most welcome.

    Mike

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
  •