the following CSS for button does not work for me when I set the background-image
Code:
isc.Button.create({ ID: "cssButton", baseStyle: "cssButton", left: 200, showRollOver: true, showDisabled: true, showDown: true, title: "CSS Button" });
Code:
.cssButton { padding:2px; font-family:Verdana,Bitstream Vera Sans,sans-serif; font-size:11px; background-color:#CCCCCC; color:#000000; border-left:1px solid white; border-top:1px solid white; border-right:1px solid #808080; border-bottom:1px solid #808080; background-image:"icons/16/find.png"; }
Comment