Home Forums WoodMart support forum Wish button Reply To: Wish button

#380318

Hello,

You need to delete duplicated button and add this custom CSS:

.wd-action-btn.wd-style-text>a {
    font-size: 13px;
    line-height: 18px;
    border-radius:35px;
    color: white;
    box-shadow: var(--btn-shop-box-shadow);
    background-color: var(--btn-shop-bgcolor);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none
    box-shadow: none;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: none;
    font-weight: 600;
    cursor: pointer;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease;
	width:157px;
}
.wd-action-btn.wd-style-text>a:hover {
    font-size: 13px;
    line-height: 18px;
    border-radius:35px;
    color: white;
    box-shadow: var(--btn-shop-box-shadow);
    background-color: rgb(1,140,18);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none
    box-shadow: none;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: none;
    font-weight: 600;
    cursor: pointer;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease;
	width:157px;
}

Best Regards