CutieQ
1
I have created a custom liquid video with a shop now button as follow
video {
display: block;
margin: 0 auto;
width: 90%;
height: 50%;
}
.wrap-vid .button {
position: absolute;
padding: 8px 16px;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
z-index: 2;
}
but I dont know how to change the the font color and the button background color
Hello @CutieQ
Add this code in your file:
.wrap-vid .button {
background: #fff; /*change color according to you*/
color: #000; /*change color according to you*/
}
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
CutieQ
3
Hello @niraj_patel
It works very fine! Thanks
What if I want to change the width & length and the alignment of the button?
Thanks again