Viewing 4 replies - 1 through 4 (of 4 total)
  • hannah

    (@hannahritner)

    Hi Erik,
    Glad you like the plugin! Try adding this to your css:

    table.td tr.order_item .td img {
        display: inline;
    }

    Hope that helps!

    Best,
    Hannah

    Thread Starter joliemolly

    (@joliemolly)

    Dear Hannah,

    Thank you. This partially worked. Text did move up a bit but “hugs” the image.. I guess as image and text are in the same cell it won’t be possible to align the text center height of the cell

    https://prnt.sc/stn11r

    Erik

    I think this would work for you:

    tr.order_item > td.td:first-child {
        display: flex;
        align-items: center;
    }
    
    tr.order_item > td.td:first-child img {
        padding-right: 10px;
        padding-bottom: 0;
    }

    Ben

    Thread Starter joliemolly

    (@joliemolly)

    Dear Ben

    Many thanks that indeed did the trick !! Looks great now.

    erik

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Product text alignment in order table’ is closed to new replies.