Hi,

I have been using the following for my submit button rollover. This  
works, obviously, in IE7, FF, Safari, etc. But, is there a way to get  
rollovers on submit buttons in IE6, or should I forgo the submit  
button and just use a regular <a> tag to submit the form? Any  
suggestions would be appreciated.

-----------------------------------
.submit input {
        border: none;
        text-indent: -9999px;
        line-height: 0; /* Need this for IE6 */
        cursor: pointer;
        position: relative; /* Need this for IE6 & IE7 inconjuction with the  
next hack */
        *left: 9999px;
}

.submit input:hover {
        background-position: 0 100%;
}

.contact_submit input {
        background: url('images/buttons/button_send.gif') no-repeat 0 0;
        width: 42px;
        height: 16px;
}

<div class="submit contact_submit">
<input type="submit" name="send_mail" value="Send" />
</div>
-----------------------------------

Thanks,

Mark
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to