Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1335124

    Hello, if you look here: https://www.caspersmeets.nl/product/update-abonnement-1-jaar/ I used the following Quick CSS:

    .single-product-summary {
        overflow: visible !important;
    }

    to change the description part to full width. However I would like to have the part just above the discription (Kies uw diagnosesysteem, Toevoegen aan winkelwagen…, that part) moved like this (like it is standard):

    Example

    Can you help me with this?

    • This topic was modified 2 years, 10 months ago by EricSmeets.
    #1335176

    Hey EricSmeets,

    Please try the following in Quick CSS under Enfold->General Styling:

    .single-product form.variations_form {
        position: absolute;
        width: 65%;
        right: 0;
    }

    Best regards,
    Rikard

    #1335598

    That does not really do the trick. The correct part gets smaller but does not get fitted on the right spot. Also now on mobile it is too narrow and the text falls outside of the box.

    • This reply was modified 2 years, 10 months ago by EricSmeets.
    #1335653

    Hi,

    Please try this CSS instead:

    .single-product form.variations_form {
        position: absolute !important;
        width: 65%;
        right: 0;
    }

    Best regards,
    Rikard

    #1335895

    Thanks Rikard,

    that works. But on a mobile device everything gets cluttered. How can to change the code so that this only applies to desktop and not mobile/ipad.

    Kind regards,
    Eric Smeets.

    #1335937

    Hi,

    Please try this CSS instead:

    @media only screen and (min-width: 1025px) {
    .single-product form.variations_form {
        position: absolute !important;
        width: 65%;
        right: 0;
    }
    }

    Best regards,
    Rikard

    #1336087

    Perfecto again. Thanks Rikard!

    #1336110

    Hi,

    Great, I’m glad that we could help. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.