Home Forums WoodMart support forum Tablet view issue Reply To: Tablet view issue

#558365

Hello,

Our mobile mode starts at a screen width of 1024px for better compatibility with the builder plugin, as Elementor chose this width by default. However, if you wants to display these buttons at a wider screen width, you can use the following code.

@media (max-width: 1180px) {
body .wd-product .wd-buttons {
		opacity: 1;
    transform: none;
    visibility: visible;
		border-radius: 35px;
}
}

Best Regards.