Hi Kornchai ,
Thanks for your patience!
Perhaps you could use a custom CSS that will use px
instead of %
for the position.
Here's one that you can use:
/* DESKTOP POSITON */
.buttonizer-line-button {
top: 252px;
}
.buttonizer-facebook-button {
top: 322px;
}
.buttonizer-youtube-button {
top: 393px;
}
.buttonizer-cart-button {
top: 463px;
}
/* MOBILE POSITION */
@media screen and (max-width: 769px) {
.buttonizer-line-button {
top: 152px;
}
.buttonizer-facebook-button {
top: 222px;
}
.buttonizer-youtube-button {
top: 292px;
}
.buttonizer-cart-button {
top: 362px;
}
}
You can copy paste this into WordPress' Additional CSS.
You'll then have to give the groups the class name above.
So the your line group should have "buttonizer-line-button" as a class name.
Please let me know if this works for you!