Okay
  Public Ticket #833300
How to move value and add text
Closed

Comments

  •  1
    Mary started the conversation

    Hi Arlin,

    Could you help me on how on this, http://prntscr.com/btypm1?

    Thanks,

    Mary

  • [deleted] replied

    Hi Mary,

    You can add this CSS:

    .laborator-woocommerce .product-single .entry-summary .price ins span.woocommerce-Price-amount.amount:before {
    content: 'Now: ';
    }

    .laborator-woocommerce .product-single .entry-summary .price del span.woocommerce-Price-amount.amount:before {
    content: 'Before: ';
    }

    .laborator-woocommerce .product-single .entry-summary .price del {
    left: 100%;
    margin-left: 20px;
    top: 5px;
    }

    .laborator-woocommerce .product-single .entry-summary .price {
    display: inline-block;
    white-space: nowrap;
    }
    To make the desired change.

    To apply Custom CSS, on WP admin panel menu click Custom CSS link (as shown here).

    The result will be like this:


    (view large version)

    Texts "Now" and "Before" are contained in the CSS I gave you.

  •   Mary replied privately
  • [deleted] replied

    Hi Mary,

    Great to hear that it worked for you.