Hello.
Please teach me how i can make a button in the left windows, middle position, but this button stay fixed always on top. If the page is scrooled, the button stay fixed?
Thank you.
Hello.
Please teach me how i can make a button in the left windows, middle position, but this button stay fixed always on top. If the page is scrooled, the button stay fixed?
Thank you.
Add this to the style of the element you want to be fixed:
You can then change the values to place it where you want. IE6 has some problems with fixed positioning so if you really need it to work in IE6 as well you will need to use a hack, let me know and I'll teach you.Code:div#example { position: fixed; left: 50px; top: 100px; }
Good luck!
Bookmarks