Home › Forums › WoodMart support forum › second "add to cart" button css › Reply To: second "add to cart" button css
July 17, 2018 at 6:54 am
#67930
Elise Noromit
Member
Hello,
Try to use this set of selectors:
.quantityhide > .button,
.quantityhide > [type=submit],
.quantityhide > button {
font-size: 13px;
line-height: 18px;
padding: 12px 20px;
background-color: #f3f3f3;
color: #3E3E3E;
display: inline-block;
position: relative;
font-weight: 600;
text-align: center;
text-transform: uppercase;
letter-spacing: .3px;
border-radius: 0;
border-width: 0;
border-style: solid;
border-color: transparent;
outline: 0;
-webkit-box-shadow: none;
box-shadow: none;
text-shadow: none;
text-decoration: none;
vertical-align: middle;
cursor: pointer;
-webkit-transition: color .25s ease,background-color .25s ease,border-color .25s ease,box-shadow .25s ease,opacity .25s ease;
-webkit-transition: color .25s ease,background-color .25s ease,border-color .25s ease,opacity .25s ease,-webkit-box-shadow .25s ease;
transition: color .25s ease,background-color .25s ease,border-color .25s ease,opacity .25s ease,-webkit-box-shadow .25s ease;
transition: color .25s ease,background-color .25s ease,border-color .25s ease,box-shadow .25s ease,opacity .25s ease;
transition: color .25s ease,background-color .25s ease,border-color .25s ease,box-shadow .25s ease,opacity .25s ease,-webkit-box-shadow .25s ease;
}
Change the styles as per your needs.
Best Regards