How to make image offset row

Hello,

Im trying to recreate this where the image is appearing partially above the row.

Hello Gavin,

You can create a row with a white background placed 5 columns which will contain the images.

Then you can add a custom CSS to nudge the columns our of the row by using the transform css property with a negative translateY value.

You can make use of an Element CSS and place it in the row. It should be something like:

$el .x-col {
  transform: translateY(-50px);
}

Hope this helps.

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