Okay
  Public Ticket #1345762
Same Height of webshop product items
Closed

Comments

  •  10
    Michael started the conversation

    Hello,

    how can I set up the same height for all product items on the shop page? Please see the attachment for more info.

    THX. Michael

  •  1,560
    Laborator replied

    Hi Michael,

    If you want perfect aligned images you will have to upload them the same size, otherwise if you want them to be on the same line they will be cropped as it isn't possible to show the images without cropping them.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •  10
    Michael replied

    Hello Art,

    thanks for the reply.
    What I mean is the height of the product fields. On the homepage I can set up it with equal height but on the webshop overview not. For the design it looks much more beautiful and more quiet if the height is equal. Of course I can make the height of the images equal but the title of the product causes this problem, I guess.

    Best regards, Michael

  •  1,560
    Laborator replied

    Hi again Michael,

    Adding the following CSS to Custom CSS will truncate the product titles in a single line since there is no other way to keep all the items in the same height:

    .shop .items .item-wrapper .item .description .title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group