• Resolved henrytngotest

    (@henrytngotest)


    Hi Team,
    I’m trying to move the order review section up as shown in the picture: order review. There is a delivery/pick-up time plugin that cause a huge empty space in the checkout. Hence, I’m trying to move the order review part up to fill in the space. Do you know how I can achieve this?
    Thanks!

Viewing 9 replies - 1 through 9 (of 9 total)
  • Please post the address of your site so the markup and styles can be examined with browser tools. The screenshot is not helpful in this respect.

    Thread Starter henrytngotest

    (@henrytngotest)

    Hi @lorro,
    Here’s the link to the site.
    Please use these to access:
    U: demo
    P: Te$Td3m03r

    Could you put up something I can order so I can get to the checkout page.

    Thread Starter henrytngotest

    (@henrytngotest)

    There are items ready for ordering, check the navigation menu on the left.

    This custom css should do what you ask:

    @media screen and (min-width: 980px ) {
      #order_review {
        margin-top: -406px;
      }
    }

    Consider instead laying out the delivery fields horizontally. Remove the above and try this:

    @media screen and (min-width: 980px ) {
      #pi_checkout_field {
        width: 100% !important;
        margin-bottom: 20px;
        vertical-align: bottom;
        border: 1px solid #eee;
        border-radius: 8px;
      }
      #pi_checkout_field p {
        display: inline-block;
        width: 23% !important;
        margin: 12px 5%;
      }
      .pisol_clear_button {
        position: static !important;
        display: inline-block !important;
        margin-left: 8px;
      }
    }
    Thread Starter henrytngotest

    (@henrytngotest)

    Thanks @lorro!
    such a simple and nice way to do it! Amazing!
    Btw, would you know how to make that order review sticky?

    In some cases, a user might not be able to scroll to the bottom of it. I don’t think that’s would be useable.

    Thread Starter henrytngotest

    (@henrytngotest)

    Got it, Thanks for the help lorro!

    Plugin Support mouli a11n

    (@mouli)

    It’s been a while since we heard from you, so I’m marking this thread resolved. Hopefully, you’ve been able to resolve this, but if you haven’t, please open up a new topic and we’ll be happy to help out.

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Move checkout order review up’ is closed to new replies.