vote up 4 vote down star
2

I am currently styling an input type='button' element using something like:

background-url: url(someimage); color: transparent; background-color: transparent;

-the point is i want the button to show as an image, and i want the value-text to NOT display on top of it. This works fine for Firefox as expected. However, on IE6 & IE7 i can still see the text.

I have tried all sorts of tricks to get the text to not display and still no joy. Has anyone got a solution to make IE behave?

(i am constrained to use type=button because this is a drupal form and its form api doesn't support image-type)

flag

37% accept rate

9 Answers

vote up 5 vote down check

Why are you including the value attribute at all? From memory, you don't need to specify it (although HTML standards may say you do - not sure). If you do need a value attribute, why not just state value=""?

If you do take this approach, your CSS will need additional properties for the height and width of the background image.

link|flag
head smack -- Alright - this actually works for me .. and I'd already been setting width and height . so tnx ! – Scott Evernden Mar 1 at 20:57
2  
It should be noted that this makes the button entirely useless for sight-impaired users. – ceejayoz Mar 1 at 23:16
1  
That's actually a very valid point. You could work around this by adding a title and alt attribute to the button, couldn't you? – Phil.Wheeler Mar 1 at 23:28
vote up 2 vote down

Have you tried setting the text-indent property to something like -999em? That's a good way to 'hide' text.

Or you can set the font-size to 0, which would work too.

http://www.productivedreams.com/ie-not-intepreting-text-indent-on-submit-buttons/

link|flag
yes i tried this and the buttons disappeared .. font-size = 0 still shows a dot – Scott Evernden Mar 1 at 20:48
vote up 2 vote down

I was having the opposite problem (worked in IE, but not FF). For IE, you need to add left padding, and for FF, you need to add transparent color. So here is our combined solution for a 16px x 16px icon button:

input.iconButton
{
    font-size: 1em;
    color: transparent; /* Fix for FF */
    border-style: none;
    border-width: 0;
    padding: 0 0 0 16px !important; /* Fix for IE */
    text-align: left;
    width: 16px;
    height: 16px;
    line-height: 1 !important;
    background: transparent url(../images/button.gif) no-repeat scroll 0 0;
    overflow: hidden;
    cursor: pointer;
}
link|flag
vote up 0 vote down

Applying "font-size: 0.1px;" to the button works for me in FF, IE6&IE7, Safari. None of the other solutions I've found worked across all of the browsers.

link|flag
vote up 0 vote down

well:

font-size: 0; line-height: 0;

work awesome for me!

link|flag
vote up 1 vote down

I use

button {text-indent:-9999px;}
* html button{font-size:0;display:block;line-height:0}  /* ie6 */
*+html button{font-size:0;display:block;line-height:0}  /* ie7 */
link|flag
vote up 0 vote down
works in FF3, IE 8, IE 8 compatablitiy mode, Opera, Safari

*note table cell containing this has padding:0 and text-align:center



background: none;

background-image: url(../images/image.gif);

background-repeat:no-repeat;

overflow:hidden;

border: NONE;

width: 41px; /*width of image*/

height: 19px; /*height of image*/

font-size: 0;

padding: 0 0 0 41px;

cursor:pointer;
link|flag
vote up 0 vote down

overflow:hidden and padding-left are working fine for me.

For Firefox:

width:12px;
height:20px;
background-image:url(images/arrow.gif);
color:transparent;
overflow:hidden;
border:0;

For the IEs:

padding-left:1000px;
link|flag
vote up 0 vote down

padding-left:1000px; rocks! thanks a lot.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.