• Resolved kunstudio17

    (@kunstudio17)


    Hi, we have an on-line shop and we really like your theme.
    The only thing we would like to change is that when the catalogue is displayed, depending on the size of the title and the prices, the boxes aren’t all the same size, and the catalogue looks untidy. Could you suggest how to limit the size of the boxes so they are all the same?

Viewing 10 replies - 1 through 10 (of 10 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    You need to show us a page with the issue

    Thread Starter kunstudio17

    (@kunstudio17)

    the web is
    https://www.sportlink.es/

    you can check any page of the catalogue, check for example:
    https://www.sportlink.es/categoria-producto/kitesurf/cometas-es/

    you will see that product boxes are not the same size

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Try adding some CSS in to see if it makes a difference. It might not because you’re using a Masonry layout.

    If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then do the following:

    1. Install this Custom CSS Manager plugin https://www.ads-software.com/plugins/custom-css-manager-plugin
    2. use its “CSS Code” section of the dashboard to hold your CSS modifications:
    3. (put this code in)

      .products .product {
          min-height: 300px;
      }
    4. Save

    Alternatively use your Child Theme style.css file to hold your CSS modifications

    Thread Starter kunstudio17

    (@kunstudio17)

    hey, thanks a lot, it partly solves the problem because now the boxes are the same height, but the grey lines are not aligned, is there a CSS I can use to align them?

    check:
    https://www.sportlink.es/categoria-producto/windsurf/velas-windsurf/

    hannah

    (@hannahritner)

    Hey kunstudio17,
    Try adding this to your custom css box in Theme Options > Advanced Settings:

    @media (min-width: 1200px) {
    .product_item .product_price {
        height: 50px;
    }
    .product_item .product_details h5 {
        min-height: 50px;
    }
    }

    Hope that helps!
    Hannah

    Thread Starter kunstudio17

    (@kunstudio17)

    Thanks it helped a lot! The grey background behind “Seleccionar Opciones” and “A?adir al Carrito” can be the same height?

    Is there a way I can make only appear the cheaper price of the interval of prices in variable products? I mean, if the cheapest variant is 1000€ and the most expensive 1500€, I want to appear only 1000€….

    Thanks!

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Thanks it helped a lot! The grey background behind “Seleccionar Opciones” and “A?adir al Carrito” can be the same height?

    You can’t really if you’re going to have some descriptions that fit on one line, some that fit on 2 and then future occurrences where it fits on 3 and so on. It’s going to bottleneck you.

    Thread Starter kunstudio17

    (@kunstudio17)

    Well, this are the only 2 options, because I have simple or variable products and that’s it.
    The translation is:

    “Seleccionar Opciones” = “Select Options”

    “A?adir al Carrito” = “Add to Cart”

    hannah

    (@hannahritner)

    1. Try adding this:

    .product_item .kad_add_to_cart, .product_item a.button {
        min-height: 45px;
    }

    2. There isn’t a built in option for that. I’m actually not sure of way without editing the theme. Sorry.

    Hannah

    Thread Starter kunstudio17

    (@kunstudio17)

    Hi Hannah, thanks! Is there a way to center the text vertically in the grey box? (so the “A?adir al carrito” stays centered and no at the top

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘tidy shop catalogue – boxes all the same size’ is closed to new replies.