Results 1 to 2 of 2

Thread: scrolling code

  1. #1
    Join Date
    Oct 2008
    Posts
    50
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default scrolling code

    i made a web site in dreamweaver and i want to put a scriptand include in it an advertise script and when i scroll down the page that advertise ads follow down do you know how i do this? thanks

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Here, you should beable to change this into your wants:
    Code:
    <html>
    <head>
    <style type="text/css">
    #div1 {
       position:fixed;
       width: 200px;
       height: 200px;
       border: 1px solid black;
       background: lightgreen;
    }
    * html #div1{
    position: absolute;
    background: bahh;
    }
    </style>
    </head>
    <body>
    <div id="div1"></div>
    </body>
    </html>
    Jeremy | jfein.net

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
  •