Results 1 to 4 of 4

Thread: 2 background images Q?

  1. #1
    Join Date
    Jul 2008
    Location
    Serbia
    Posts
    47
    Thanks
    3
    Thanked 1 Time in 1 Post

    Default 2 background images Q?

    Hi,

    On my page there is background image inserted via css with simple tag:

    Code:
    background: url(../bg/bg1.jpg) repeat-y center top fixed;
    and now I need to insert fixed div...

    Position of that div must be bottom right, and need to be fixed when scrolling my page. That div will also contain background image.

    So if any one know what and how... just write or place link ....

    Thank's
    Last edited by bokanegro; 10-30-2008 at 05:08 PM.

  2. #2
    Join Date
    Jan 2006
    Location
    Ft. Smith, AR
    Posts
    795
    Thanks
    57
    Thanked 129 Times in 116 Posts

    Default

    Code:
    <style type="text/css">
    div.bottright{
    position:fixed;
    bottom:0;
    right:0;
    background:url('blah.jpg') no-repeat 0 0;
    }
    </style>
    </head>
    <body>
    <div class="bottright">
    
    </div>
    --------------------------------------------------
    Reviews, Interviews, Tutorials, and STUFF
    --------------------------------------------------
    Home of the SexyBookmarks WordPress plugin

  3. #3
    Join Date
    Jul 2008
    Location
    Serbia
    Posts
    47
    Thanks
    3
    Thanked 1 Time in 1 Post

    Default

    Thank you for your help

    Just one thing:

    In style:

    Code:
    <style type="text/css">
    div.bottright{
    position:fixed;
    bottom:0;
    right:0;
    background:url('blah.jpg') no-repeat 0 0;
    }
    </style>
    Must define width and height

    Code:
    <style type="text/css">
    div.bottright{
    position:fixed;
    bottom:0;
    right:0;
    width: 100px;
    height: 100px;
    background:url('blah.jpg') no-repeat 0 0;
    }
    </style>
    Or background wont be shown ..

    Mucas gracias conpadre

  4. #4
    Join Date
    Jan 2006
    Location
    Ft. Smith, AR
    Posts
    795
    Thanks
    57
    Thanked 129 Times in 116 Posts

    Default

    denada
    --------------------------------------------------
    Reviews, Interviews, Tutorials, and STUFF
    --------------------------------------------------
    Home of the SexyBookmarks WordPress plugin

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
  •