How to move view all button below featured products Shopify Dawn theme

Hi,

I would like to move the VIEW ALL button below the featured products.
It is now shown below the Featured Products title. See attached.

Is there someone who can explain to me how to do this?

Kind regards,
Els

1 Like

Hi @lagentilestore

Do you mean to move here?

If it is, try this one then.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.collection.feature-collection.section-template--19690807066957__1bd80085-15f7-4d04-aa3a-da653fa18bea-padding.collection--full-width {
    display: flex;
    flex-direction: column;
}
.center.collection__view-all {
    order: 3;
}
  • And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!