How do I change the graphic from the green plus sign that the user cliicks to get added/removed from dnn roles?
The green plus sign is an image button and can easiliy be changed to any image you like. To change the graphic on the green plus sign on the role manager module do the following:
- On your server navigate to your DesktopModules/Smith.RoleManager/images folder
- Copy the image you want to replace the green plus sign with to the DesktopModules/Smith.RoleManager/images folder
- In the DesktopModules/Smith.RoleManager/ folder
- Open up ManageRoles.ascx in your editor and change the image name in the file with your new image as highlighted in yellow below:
<asp:ImageButton runat="server" ID="btn" ImageUrl="~/images/add.gif" OnClick="btn_Click" />
5. Save your change and your new image will show up
-Scott