Home Forums WoodMart support forum Lumise Integration Reply To: Lumise Integration

#254008

Artem Temos
Keymaster

Hello,

Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.

.single-product .lumise-customize-button {
	color: white;
	background-color: #00a3ef;
	border-radius: 35px;
}
.single-product .lumise-customize-button:hover {
	color: white;
	background-color: #36b4e5;
	box-shadow: none;
}
.woodmart-sticky-btn .single_add_to_cart_button {
	display: none;
}
@media (max-width: 575px) {
	.woodmart-sticky-btn .lumise-customize-button {
		border-radius: 0;
		width: 100%;
		padding-left: 90px;
	}
}

Regards