Im currently customizing a softwared driven site
which has a lot of limitation, i can add new properties on existing css class and thats it.
I was ask to add a tooltip to a certain class but no success.
is it still possible to
add a tooltip in "buy" button by adding or just adjusting the existing css? or maybe a javascript?
</head>
<style type="text/css">
.btn-BuyOff2 {
background-color: #DDBBFE;
border-style: none;
border-width: 0;
color: #A3238E;
font-size: 9pt;
font-weight: bold;
text-decoration: none;
}
.btn-BuyOff {
background-color: #DDBBFE;
border-style: none;
border-width: 0;
color: #A3238E;
font-size: 9pt;
font-weight: bold;
text-decoration: none;
}
.btn-BuyOn {
background-color: #A882E0;
border-style: none;
border-width: 0;
color: #FFFFFF;
font-size: 9pt;
font-weight: bold;
text-decoration: none;
}
.btn-BuyOn2 {
background-color: #DDBBFE;
border-style: none;
border-width: 0;
color: #A882E0;
font-size: 9pt;
font-weight: bold;
text-decoration: none;
cursor: pointer;
}
</style>
<body>
<!--cannot modify-->
<td class="btn-BuyOff2" align="center">
<input id="buyid" type="hidden" value="1027" name="buyid">
<input type="hidden" value="28" name="category">
<input type="hidden" value="" name="itemid">
<input id="qty" class="input" value="1" maxlength="6" size="6" name="qty">
<input id="addtocart" class="btn-BuyOff2 hastip" type="button" onclick="if (document.forms['form1027'].onsubmit()) { document.forms['form1027'].submit(); } return false;" onkeypress="window.event.cancelBubble=true;" onmouseout="this.className='btn-BuyOff2'; return true;" onmouseover="this.className='btn-BuyOn2 hastip'; return true;" name="addtocart" value="Buy">
</td>
<td></td>
</body>
</html>