Search bar needed
-
Hi Every1, I visited a site and found a search bar which is not moving when we scroll down or up the web page .http://www.plastemart.com/plasticnews.asp#[^].this is the link for that page and you can find a search bar on the right lower corner.Please help me to make one similar to that.I really want to know how can we do that in asp.net... Thanks in advance
-
Hi Every1, I visited a site and found a search bar which is not moving when we scroll down or up the web page .http://www.plastemart.com/plasticnews.asp#[^].this is the link for that page and you can find a search bar on the right lower corner.Please help me to make one similar to that.I really want to know how can we do that in asp.net... Thanks in advance
It's a
div
with top positionabsolute
. When you view the source code, check this line:<div style="visibility: visible; position: absolute; left: 19px; top: 445px; vertical-align: top;" id="myChaser11">
All the controls are put inside the div tag and so they have an absolute position against the page. It will always remain 445px below the top of the page.
..Go Green..