Button skinning
The control has css type skinning, so if you want to create another skin for it, just set it's CssClass property to your new skin's name, turn off embedded skins and make sure you include the appropriate css files.
More detailed information about button css classes to change/apply can be found at Yahoo! UI Library's Button page.
Here's a customized button skin:
Here is the code behind the button:
<yui:Button ID="Button1" CssClass="customButtonSkin" EnableEmbeddedSkin="false"
Text="Modified button skin" runat="server" />
|