Hi Xavier!
Thank you so much! This is the right way to solve my problem!
Now I have the second button with different color!
Last question is:
I've tried to insert this code for the Hover effect
.hikashop_product_contact_main .hikashop_cart_button {
text-decoration:none;
color: #FFFFFF !important;
cursor: pointer;
display: inline-block;
line-height: 25px;
margin: 5px;
padding: 3px 8px;
text-align: center;
box-shadow:none !important;
text-shadow:none !important;
border:;
border-color: #FFFFFF #FFFFFF #FFFFFF #FFFFFF;
border-radius:4px;
background-color: #eee;
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#eee));
background: -webkit-linear-gradient(top, #ffa100, #ffcc255);
background: -moz-linear-gradient(top, #ffa100, #ffcc255);
background: -o-linear-gradient(top, #ffa100, #ffcc255);
background: linear-gradient(top, #ffa100, #ffcc255);
width: 137px;
height: 28px;
}
.hikashop_product_contact_main .hikashop_cart_button:Hover {
text-decoration:none;
color: #FFFFFF !important;
cursor: pointer;
display: inline-block;
line-height: 25px;
margin: 5px;
padding: 3px 8px;
text-align: center;
box-shadow:none !important;
text-shadow:none !important;
border:;
border-color: #FFFFFF #FFFFFF #FFFFFF #FFFFFF;
border-radius:4px;
background-color: #eee;
background: -webkit-linear-gradient(top, #ffcc255, #ffa100);
background: -moz-linear-gradient(top, #ffcc255, #ffa100);
background: -o-linear-gradient(top, #ffcc255, #ffa100);
background: linear-gradient(top, #ffcc255, #ffa100);
width: 137px;
height: 28px;
}
but I can't see the change...
still have the hover effect of the original button with this code
a.hikashop_cart_button:hover, a.hikashop_compare_button:hover, .hikashop_cart_input_button:hover{
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05);
display: inline-block;
outline: none;
border:;
border-color: #EEEEEE #DDDDDD #DDDDDD #EEEEEE;
text-decoration:none;
background-color: #f8f8f8;
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8f8f8));
background: -webkit-linear-gradient(center, #619dd8, #578ECC);
background: -moz-linear-gradient(center, #619dd8, #578ECC);
background: -o-linear-gradient(center, #619dd8, #578ECC);
background: linear-gradient(top, #619dd8, #578ECC);
transition: background-position 0.1s linea 0s;
}
How can I set an hover effect just for the second button? Thank you again!