Skip to content

Instantly share code, notes, and snippets.

@ae-elaine-axis
Created May 21, 2018 19:43
Show Gist options
  • Select an option

  • Save ae-elaine-axis/d30459f43733d1d269d39e1e21296af5 to your computer and use it in GitHub Desktop.

Select an option

Save ae-elaine-axis/d30459f43733d1d269d39e1e21296af5 to your computer and use it in GitHub Desktop.
Footer menu on the top
.ec-size .ec-store__category-page .ec-store__content-wrapper {
display: flex;
flex-direction: column;
}
.ec-size .ec-store__category-page .ec-grid {
order: 2;
}
.ec-size .ec-store__category-page .ec-pager {
order: 3;
}
.ec-size .ec-store__category-page .ec-footer {
order: 1;
}
.ec-store .ec-store__content-wrapper {
display: flex;
flex-direction: column;
}
.ec-store .ec-footer {
order: 1;
}
.ec-store .product-details {
order: 2;
}
.ec-store .related_products {
order: 3;
}
@ae-elaine-axis

Copy link
Copy Markdown
Author

Or:

html#ecwid_html body#ecwid_body .ec-size .ec-store .ec-store__content-wrapper {
display: flex;
flex-direction: column;
}
html#ecwid_html body#ecwid_body .ec-size .ec-store .ec-store__content-wrapper .ec-footer {
order: 1;
}
html#ecwid_html body#ecwid_body .ec-size .ec-store .ec-store__content-wrapper .product-details,
html#ecwid_html body#ecwid_body .ec-size .ec-store .ec-store__content-wrapper .ec-grid,
html#ecwid_html body#ecwid_body .ec-size .ec-store .ec-store__content-wrapper .ec-cart {
order: 2
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment