Hi there,
Thank you for the kind words!
Could you share the URL of the product where the issue is visible? Otherwise I can’t really help, as it’s a layout issue.
Marc.
Hi,
Thanks alot for your reply. The url of the product is https://wrappin.nl/product/iphone-12-pro-max/. And I have one more question, if you go to the wrap layer you will see 3 skins. I would like to group those and give them names. Like https://www.gadgetshieldz.com/oneplus-8t-skins-wraps-covers.html.
If I understand correctly, you want to do something like this?

If so, you can adjust the top and bottom positions of .mkl_pc_viewer and .mkl_pc_toolbar, in the media queries.
For example for the “layers”, change
@media( max-width: $small_screen_width ) {
width: 100%;
top: 0;
bottom: 50%;
.form.form-cart {
display: none;
}
}
to
@media( max-width: $small_screen_width ) {
width: 100%;
top: 50%;
bottom: 0;
.form.form-cart {
display: none;
}
}
and the other way for the viewer (only the top and bottom values were changed).
If that’s not what you mean, you’ll have to explain in a different way 🙂
I would like to group those and give them names.
This isn’t currently possible without some custom code, but I’m going to add this in the future.
Yes that is exactly what I wanted. Thanks alot!
-
This reply was modified 5 years, 6 months ago by
yassabdell.