Home Forums WoodMart support forum shop page/single product

shop page/single product

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #644697

    vt
    Participant

    hello
    i am trying to make this text from taxes below the price https://prnt.sc/XW_L00cjFc-n and i am also trying to add a text before the price https://prnt.sc/4N_J__eUKJVO

    #645040

    Hung Pham
    Keymaster

    Hi vt,

    Thanks for reaching to us.

    Please add the below Custom CSS code to Theme Settings > Custom CSS > Global CSS section:

    .price {
        display: flex;
        flex-direction: column;
    }
    
    .price span {
        margin-bottom: 5px;
    }
    
    p.price > span:first-child::before {
        content: "Your Pretext Here: "; 
        display: inline;
    }

    Regards,

Viewing 2 posts - 1 through 2 (of 2 total)