Box size not same

How do I get the boxes the same size no matter what device?

Hi There,

Please add this inline CSS to your row: display: flex;

Hope it helps :slight_smile:

Nope that put everything into columns across it brought up the horizontal button below and the yellow row below. All of those are in one row

Hi There,

Please add this to THeme Options > CSS

@media (min-width: 768px) {
	.flex-row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	align-content: stretch;
}
}

Then add the CLASS flex-row to the ROW.



Make sure it’s in the ROW.

Hope it helps,
Cheers!

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