Skip to content

Instantly share code, notes, and snippets.

@ae-elaine-axis
Created January 4, 2019 13:53
Show Gist options
  • Save ae-elaine-axis/dfca51206eeab80bcd772791d161dc52 to your computer and use it in GitHub Desktop.
Save ae-elaine-axis/dfca51206eeab80bcd772791d161dc52 to your computer and use it in GitHub Desktop.
Move the Related Products section to the right
.ec-size .ec-store .grid__wrap .grid__products {
justify-content: flex-end;
}
.ec-size .ec-store .ec-related-products__title {
text-align: right;
}
/* Or this alternative code */
.ec-size .ec-store .grid__wrap .grid__products {
flex-direction: row-reverse;
}
.ec-size .ec-store .ec-related-products__title {
text-align: right;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment