NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: olu on April 07, 2009, 04:13:00 PM
-
do anyone one know how to put image on a browse to perform the delete function that the the delete button does?
-
Hi,
Create a delete button, give it no text. Give it an image preferrably png with transparency.
In the CSS Class give it a new name, mine is called imgbutton (remember css is case sensitive).
If you don't already have one, add a new CSS file to your application. Go to your main procedure that has the server extension template on it. Go into Extensions, find nettalk, then "Settings" then on the tab within it go to "styles". Add a new file into CSS Style Files.
In this new file add something like this:
.imgbutton {
padding: 0;
border: 0;
background: transparent;
cursor:pointer;
}
This will make the button look like just an image.
Regards
Bill Shields
-
Thanks alot bill that did do the trick.