1) Script Title:
Pausing up-down Scroller
2) Script URL (on DD):
http://www.dynamicdrive.com/dynamicindex2/crosstick.htm
3) Describe problem:
There is no problem. Dose anyone know how I can make the board/corners rounded?
Thanks
Lexxie
1) Script Title:
Pausing up-down Scroller
2) Script URL (on DD):
http://www.dynamicdrive.com/dynamicindex2/crosstick.htm
3) Describe problem:
There is no problem. Dose anyone know how I can make the board/corners rounded?
Thanks
Lexxie
If you're looking for round corners, you'll need to use a background image.
The GNU Image Manipulation Program has a very handy "round corners" tool in it.
Hope that helps!
Alex Blackie, X96 Design
My Website
I specialize in: HTML5, CSS3, PHP, Ruby on Rails, MySQL, MongoDB, Linux Server Administration
lexxie (02-28-2009)
You could use CSS3 border-radius for this:
Good luck!Code:#pscroller1{ width: 200px; height: 100px; border: 1px solid black; padding: 5px; background-color: lightyellow;-moz-border-radius: 10px; //for Firefox -webkit-border-radius: 10px; //for webkit browsers border-radius: 10px; //for future compatibility with browsers supporting CSS3}
lexxie (02-28-2009)
Bookmarks