Home Forums WoodMart support forum shop page/single product

shop page/single product

Viewing 8 posts - 1 through 8 (of 8 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
    Participant

    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,

    #645473

    vt
    Participant

    only one problem https://prnt.sc/3Gig78qjywH8 as you can see the text doesnt show

    #645703

    Hung Pham
    Participant

    Hi vt,

    I see the text was added, please let me know if you resolved it.

    Regards,

    #645872

    vt
    Participant

    yes now all the texts are there one small problem https://prnt.sc/Zbd6nqEa4Be6 the text of the price is above the price i tried to move it before the price but it effects the text after the price too

    #645897

    Hung Pham
    Participant

    Hi vt,

    It looks good on my end, please double check https://ibb.co/Y9m99N9

    Regards,

    #645899

    vt
    Participant

    thats weird to my screen on 3 different computers doesnt look like that it looks above like that https://prnt.sc/IIPCx0oRA-aI

    #646269

    Hung Pham
    Participant

    Hi vt,

    Thanks for your patience.

    Please replace

    p.price > span:first-child::before {
        content: "Τιμή ";
        display: inline;
    }

    with

    
    p.price > span > span::before {
        content: "Τιμή ";
        display: inline;
    }
    

    Regards,

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