Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Placing the widget in the top right corner CSS

With this CSS we can achieve that the cart widget is placed in the top right corner. It should be noted though that the values in the pixel values in the stylesheet are hard coded, so one should proceed with caution.

Code Block
languagecss
.affilicon-cart-widget .cd-cart {
    top: 20px;
    bottom: auto;
}
.affilicon-cart-widget .cd-cart-trigger {
    top: 547px;
}
.cd-cart-container.cart-closed .cd-cart-trigger {
    top: 20px;
}
.affilicon-cart-widget .cart-closed .cd-cart .wrapper {
    top: 0px;
}

...