Posts

Showing posts from April, 2011

Circular buttons

This topic shows you how to change the rounded buttons to circular one. 1. Create a New Website. 2. Create New Folder and name it images or any name you like and add circular image you want to use as the button. 3. Now add the following code to button control. <asp:Button ID="Button1" runat="server" style="background-image: url(images/but.png); " BackColor="Transparent" BorderStyle="None" Height="50px" Width="50px" Text="Button" /> Add the blue color code to the button control. The image you want to use ac circular button should be in PNG or GIF format. I prefer PNG format. Commentssss!!!