Home Forums WoodMart support forum I want move Product video. Reply To: I want move Product video.

#292126

Bogdan Donovan
Keymaster

The following custom code has been disabled: https://prnt.sc/12vlxmj, http://prntscr.com/12vm2m9

Here is custom code for product gallery video button. Try to add the following code snippet to the Custom CSS area in Theme Settings.

body .product-additional-galleries {
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}

body .product-additional-galleries > div {
	pointer-events: auto;
}

body .product-video-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

Kind Regards