Classic Promo scrollbars

Hello,

I recently updated X after a while and I seem to have lost the fixed height classic promo boxes on our website:

. This page used to have images all of the same size and the classic promo widgets also having the same size. There should be two rows of 3 and one row of 2… currently it looks weird.

I have reviewed the support forums and have the css code in use:

.flexmethod {
display: flex;
align-content: stretch;
flex-wrap: wrap;
}

.flexmethod .x-promo {
border: 0;
}

.flexmethod .x-column {
border: 1px solid rgba(0,0,0,0.075);
}

This is not giving me the right layout though… Can you please help me with the proper CSS code to get a fixed height promo box (scrollbar inside for longer content is how it used to work - and oddly still works properly inside cornerstone).

Also please pay attention to the last row of classic promos - the images and layouts are larger than the previous two.

Thanks!

Hi @shandles,

The height of images on the last 2 promo element is bit bigger than the others.

Please try adding this custom CSS:

.x-promo.promo-custom .x-promo-image-wrap img {
    max-height: 275px;
}

Let us know how it goes!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.