like in http://www.online-photoshoptutorials.com/2008/08/folding-corners.html
Nope, i want to know how to create that from scratch
coderex
2009-06-28 19:17:57
Oh well, that's a bit more complicated, and it's not something that can be answered. It would be like asking "how can I make a calendar widget ?"
Stefano Borini
2009-06-28 19:19:32
+5
A:
<div id="toolbar" style="position: fixed; bottom: 0px; left: 0px; width: 100%; color: #fff; background: #000;">
Toolbar Content
<!-- rest of your toolbar stuff here -->
</div>
That will create a div with a black background that remains at the bottom of the screen, regardless of browser resizing or scrolling. You can then style that div however you like.
Matt Bridges
2009-06-28 19:23:00
A:
Thank you very much for answering his query and providing this:
<div id="toolbar" style="position: fixed; bottom: 0px; left: 0px; width: 100%; color: #fff; background: #000;">
Toolbar Content
<!-- rest of your toolbar stuff here -->
</div>
Works a treat and is exactly what I am after!
Thanks!!
JJacko
2010-01-06 09:44:05