• Resolved yassabdell

    (@yassabdell)


    First of all I need to start to thank you for this amazing plugin, one of the best I think. I have a question about the mobile version inline configuration, the layers are above the product image. I have made a custom theme, but I can’t find a way to switch these 2. I would love to have the product image on top and the layers below it.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Marc Lacroix

    (@marcusig)

    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.

    Thread Starter yassabdell

    (@yassabdell)

    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.

    Plugin Contributor Marc Lacroix

    (@marcusig)

    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 ??

    Plugin Contributor Marc Lacroix

    (@marcusig)

    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.

    Thread Starter yassabdell

    (@yassabdell)

    Yes that is exactly what I wanted. Thanks alot!

    • This reply was modified 4 years ago by yassabdell.
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Inline Configuration on Mobile’ is closed to new replies.