You can't change the src attribute in CSS. About the only thing you can do is if the button is wrapped in an outer element, then set the opacity to 0 (alpha filter in IE) and set the new image as the background image of the outer element. This will only work if the button is wrapped in something like a division.
Jamie Holly http://www.intoxination.net http://www.hollyit.net
On 9/23/2011 1:35 PM, Salvatore De Paolis wrote:
On Fri, 23 Sep 2011 13:06:16 -0400 Jamie Holly hovercrafter@earthlink.net wrote:
That is CSS:
input[name='foo'] {
}
Yes I can see it now and I can select the input this way. But I don't see how to modify the src attribute with this.
input[name='foo'] { src: 'foo-link'; }
doesn't work.
Thanks, Sal