Click here to Skip to main content
Click here to Skip to main content

Fixed or Sticky header or ASP.NET webpage

By , 19 Dec 2010
 
If you want the header section of the website to be fixed on top with menus and other information, you can simply use the below CSS to do so:
 
        .header
        {
            background-color:Gray;
            width:100%;
            height:100px;
            position:fixed;
            top:0px;
            margin:0px;
            padding:0px;
        }
 
        body
        {
            padding-top:110px;
            margin:0px;
        }
 
Use it like:
 
        <div class="header">
               Header content goes here...
        </div>
        <div>
               Body content goes here...
        </div>
 
This can be used with Master pages too.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Amit Kumar Tiwari
Technical Lead
India India
Member
I am module lead with experience in Microsoft Technologies like .NET, SharePoint etc.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralThanks, that does make things easier!subeditorWalt Fair, Jr.18 Dec '10 - 15:21 
GeneralReason for my vote of 5 Thanks for sharing this tipmemberlinuxjr17 Dec '10 - 7:41 
GeneralReason for my vote of 5 My vote 5 for good work!memberAbdul Quader Mamun17 Dec '10 - 5:17 
GeneralThank you so much for appreciation :)memberAmit Kumar Tiwari16 Dec '10 - 15:58 
Thank you so much for appreciation Smile | :)
GeneralGood TipsmemberAbdul Quader Mamun16 Dec '10 - 8:33 
GeneralReason for my vote of 5 That's good TIP, It's working like a...memberHiren Solanki15 Dec '10 - 21:19 
GeneralGood Job Amitmemberanil Madan20 Dec '10 - 7:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 19 Dec 2010
Article Copyright 2010 by Amit Kumar Tiwari
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid