I’m wanting to create a custom spry image slideshow by using dreamweaver. the typical 4 corner rectangular shape ones just appearance so boring. Can’t figure out how to make the factors round.. Any help would be appreciated, thanks.
If you are using a div tag for your image holder or on the whole slideshow add these lines on the CSS
-moz-border-radius: 15px 15px 15px 15px;
-webkit-border-radius: 15px 15px 15px 15px;
border-radius: 15px 15px 15px 15px;
These kinds of three lines associated with code will include a 15px circle edge to every single corner. You can modify the size if you want. Each 15px represents a quarter. There are about three lines of code regarding it to work in multiple browsers.