
01-04-2019, 01:52 PM
|
 |
Ecwid Team
|
|
Join Date: Sep 2016
Posts: 93
|
|
Hi Maxime,
I see that you've changed the layout of your product details page. Generally, you can move the Related Products section to the right using one of the below CSS codes:
Code:
.ec-size .ec-store .grid__wrap .grid__products {
justify-content: flex-end;
}
.ec-size .ec-store .ec-related-products__title {
text-align: right;
}
Or
Code:
.ec-size .ec-store .grid__wrap .grid__products {
flex-direction: row-reverse;
}
.ec-size .ec-store .ec-related-products__title {
text-align: right;
}
You can add CSS codes to the end of your store theme in your Ecwid control panel > Design > Edit Theme page.
__________________
Elaine,
Ecwid Team
|