Website Masthead and Ad unit

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Jeremy Fuhriman
    New Member
    • Sep 2011
    • 1

    Website Masthead and Ad unit

    Is it possible to have the (728x90 pixles) leaderboard ad in the website masthead that does not scroll? So as you scroll down the page the masthead with the ad unit will always remain visible.
  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    Yes, you can use fixed positioning to do that.

    Code:
    <style>
       #header { position: fixed;
                 top: 0px;
                 left: 0px;
               }
    </style>
    
    ................
    
    <div id="header">This is fixed</div>

    Comment

    Working...