
Originally Posted by
lat9
The default (for the plugin, anyway) stylesheet_css_buttons.css contains the following towards the top:
Code:
.buttonRow a {
text-decoration: none;
}
.button, input.button, input.cssButtonHover {
-moz-box-shadow:inset 0px 1px 0px 0px #dbd8c0;
-webkit-box-shadow:inset 0px 1px 0px 0px #dbd8c0;
box-shadow:inset 0px 1px 0px 0px #dbd8c0;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
display:inline-block;
font-family:Verdana;
font-size:13px;
font-weight:bold;
margin: 0;
padding:3px 8px;
text-decoration:none;
}
I'd need to create an account and make a purchase to be sure, but I'm guessing that you could just code:
Code:
.button, input.button, input.cssButtonHover {
text-decoration:none;
}
to remove the underline attribute from all the buttons (normal and hover). If that doesn't work, you could PM me some test account credentials.

Originally Posted by
DivaVocals
except for the font-family and the inline-block this is all the same.. I'll PM you credentials to see what I see..
Thanks to my secret code ninja, I got the HINT I needed.. 
I added this the the CSS button stylesheet:
Code:
/* Remove the text underline from the My Account Information page "View" buttons*/
#tdcol6 a {text-decoration: none;}
/* Remove the text underline from the My Order History page "View" buttons*/
.content a {text-decoration: none;}
and dammed if that didn't do it!!!