Hello, I am using simple CSS to add to a button but, of course, the button in IE has a double border. See attachment. background-image: url(search.gif) repeat-x; border: 1px solid #CCC; height: 25px; color: #00F; text-decoration: none;
try out this: first you cut out new image of the button in photoshop (search gif). (with text "search" and border, gradient etc.) in html replace your button with: <input id="search_btn" type="image" value="" src="/images/search.gif" /> in css: input#search_btn { width: (exact width of search.gif); height: (exact height of search.gif); margin: 0 0 0 4px; padding: 0; border: 0 ; }
no, that's not what i wanted, no image source as a button. i think i might have a solution after searching. it's seems to work ok when i add a span around the button. then have a span input = background: none and border: 0. the span will have the background and border. i would have posted sooner but, could not connect to dp for hours.