Home Forums WoodMart support forum You have activated your purchase code more than 3 times. You are allowed to do t Reply To: You have activated your purchase code more than 3 times. You are allowed to do t

#44427

Bogdan Donovan
Keymaster

Hi,

Try to add the following code snippet to the Custom CSS area in Theme Settings to change your hover. https://prnt.sc/inz8qb

.product-grid-item .wrap-quickview-button {
	display: none;
}

.woodmart-buttons>div a:after {
    border: 1px solid #bbb !important;
    border-left-color: #000 !important;
}

.main-page-wrapper .products .product-grid-item .fade-in-block .woodmart-buttons .yith-wcqv-button .blockOverlay:after {
	width: 20px;
	height: 20px;
	margin-left: -10px;
	margin-top: -10px;
}

.product-grid-item .woodmart-buttons .yith-ywraq-add-to-quote .yith_ywraq_add_item_product_message {
	display: none !important;
}

.product-grid-item .woodmart-buttons .yith-ywraq-add-button > img {
	display: none;
}

.main-page-wrapper .products .product-grid-item .woodmart-buttons {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.main-page-wrapper .products .product-grid-item .woodmart-add-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.main-page-wrapper .products .product-grid-item .fade-in-block .woodmart-buttons .wrap-wishlist-button {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}

.main-page-wrapper .products .product-grid-item .fade-in-block .woodmart-buttons .woodmart-add-btn a {
	width: 40px;
	height: 40px;
}

.main-page-wrapper .products .product-grid-item .fade-in-block .woodmart-buttons .woodmart-add-btn a {
	background-color: transparent !important;
	box-shadow: none;
}

.main-page-wrapper .products .product-grid-item .fade-in-block .woodmart-buttons .woodmart-add-btn a:hover,
.main-page-wrapper .products .product-grid-item .fade-in-block .woodmart-buttons .woodmart-add-btn a:active,
.main-page-wrapper .products .product-grid-item .fade-in-block .woodmart-buttons .woodmart-add-btn a:focus {
	box-shadow: none;
	top: 0;
}

.main-page-wrapper .products .product-grid-item .fade-in-block .woodmart-buttons .woodmart-add-btn > a span {
	font-size: 0;
}

.main-page-wrapper .products .product-grid-item .fade-in-block .woodmart-buttons .woodmart-add-btn > a:before {
	position: relative;
	transform: none;
  -webkit-transform: none;
}

.main-page-wrapper .products .product-grid-item .fade-in-block .woodmart-buttons .woodmart-add-btn > a:before, 
.main-page-wrapper .products .product-grid-item .fade-in-block .woodmart-buttons .woodmart-add-btn div a:before,
.main-page-wrapper .product-grid-item .woodmart-buttons .yith-wcwl-add-to-wishlist a:before {
    font-family: fontawesome;
    font-size: 21px;
		color: black;
}

.main-page-wrapper .products .product-grid-item .fade-in-block .woodmart-buttons .add-deposit-to-cart-button:before {
		content: "\f09d";
}

.main-page-wrapper .products .product-grid-item .fade-in-block .woodmart-buttons .add_to_cart_button:before {
		content: "\f07a";
}

.main-page-wrapper .products .product-grid-item .fade-in-block .woodmart-buttons .add-request-quote-button:before {
		content: "\f067";
}

.main-page-wrapper .products .product-grid-item .fade-in-block .woodmart-buttons .yith-wcqv-button:before {
		content: "\f002";
}

.main-page-wrapper .product-grid-item .woodmart-buttons .yith-wcwl-add-to-wishlist a:before {
		content: "\f004";
}

@media (max-width: 768px) {
	.product-grid-item.woodmart-hover-base.col-sm-6 {
		width: 100%;
	}
	
	body .woodmart-hover-base.hover-width-small:not(.product-in-carousel) .woodmart-buttons>div {
		border-right: none;
		-webkit-box-flex: 0;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
	
	.product-grid-item.woodmart-hover-base .wrap-wishlist-button {
		width: 40px;
	}
}

Regards