Viewing 2 replies - 1 through 2 (of 2 total)
  • Your problem is in your theme’s stylesheet on line 1215:

    .actions {
    opacity: 0;
    display: none;
    text-align: center;
    position: absolute;
    top: 30%;
    left: 50%;
    z-index: 10;
    margin-left: -50px;}

    a safe way to override that might be:

    .shop_table td.actions {
    opacity: 1;
    display: table-cell;
    text-align: right;
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
    margin-left: 0;
    Thread Starter mcnamara14

    (@mcnamara14)

    Thank you bheadrick! I could not figure out what the problem was for the life of me. Figured it was something simple.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘"Update Cart" and "Checkout" buttons missing from cart page’ is closed to new replies.