• Resolved orderbot

    (@orderbot)


    Hello,

    How would it be possible to change Basket position? Currently it’s Top fixed, but on mobile version it’s hide top menu… Is it possible to set-up it to be a bit below menu? Or Make it fixed at middle?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi ,

    Use this CSS

    @media only screen and (max-width: 750px) {
        .xoo-wsc-basket{
         bottom: 10px;
         top: auto;
        }
    }
    Thread Starter orderbot

    (@orderbot)

    Hi,

    Thanks, but after this CSS on mobile version cart icon go on bottom fixed position… Maybe you have CSS to make it at middle? That probably would be best solution, if that possible.

    Thank you!

    Make it 50%

    @media only screen and (max-width: 750px) {
        .xoo-wsc-basket{
         bottom: 50%;
         top: auto;
        }
    }
    Thread Starter orderbot

    (@orderbot)

    Hi,

    Thanks, it’s perfectly works for mobile devices. I wonder is any possibility to set up same middle positions for all devices as well?

    Hi,

    Remove media query

    .xoo-wsc-basket{
         bottom: 50%;
         top: auto;
        }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Basket position’ is closed to new replies.