What's your biggest current challenge? Have your say in Community Polls along the right column.

Featured collection view all link or button to the right of collection title

Solved

Featured collection view all link or button to the right of collection title

DMMinis
New Member
7 0 0

It looks like several individuals have been able to get this completed.  I found a code that almost got me there, but when you resized the window it would ruin how it was aligned.  Would appreciate some help.

 

URL is www.dmminisus.com

 

Thanks for any help.

Accepted Solution (1)
Sonya_2025
Shopify Partner
294 36 53

This is an accepted solution.

Hi @DMMinis 

To achieve your needs, pls follow below steps:

1. Open your theme code editor

2.Find the file Featured-collection.liquid in the sections folder

3.Find the code that render the button View all. Here

Sonya_2025_0-1733274462935.png

 

4. Copy the code to the title, here

Sonya_2025_1-1733274553116.png

5. Remove the code at the step 3

6. Copy the code and paste it at the end of the file

<style>
  .collection__title {
    display: flex;
    justify-content: space-between;
  }
  .collection__title h2 {
    display: flex;
    align-items: center;
    margin-bottom: 0px !important; 
  }
</style>

Hope this helps.

Please let me know if it works by giving it a Like or marking it as a solution!
Feel free to reach out.Get Shopify free trial 1$/mon
 EMAIL ME  Motivate me by  PAY ME

View solution in original post

Replies 5 (5)

Sonya_2025
Shopify Partner
294 36 53

Hi @DMMinis 

Pls follow below steps to achieve your needs

1. Open your theme editor

2. Select the homepage template

3. Select the feature product collection

4. Paste the code to the right bottom of the custom css input box

.collection__view-all {
  text-align: right;
  padding-right: 10px;
}

Sonya_2025_0-1732693314525.png

 

Hope this helps.

Please let me know if it works by giving it a Like or marking it as a solution!
Feel free to reach out.Get Shopify free trial 1$/mon
 EMAIL ME  Motivate me by  PAY ME
DMMinis
New Member
7 0 0

It unfortunately did not work to realign the view all.

DMMinis
New Member
7 0 0

I'm looking for something like this - Untitled.jpg

Sonya_2025
Shopify Partner
294 36 53

This is an accepted solution.

Hi @DMMinis 

To achieve your needs, pls follow below steps:

1. Open your theme code editor

2.Find the file Featured-collection.liquid in the sections folder

3.Find the code that render the button View all. Here

Sonya_2025_0-1733274462935.png

 

4. Copy the code to the title, here

Sonya_2025_1-1733274553116.png

5. Remove the code at the step 3

6. Copy the code and paste it at the end of the file

<style>
  .collection__title {
    display: flex;
    justify-content: space-between;
  }
  .collection__title h2 {
    display: flex;
    align-items: center;
    margin-bottom: 0px !important; 
  }
</style>

Hope this helps.

Please let me know if it works by giving it a Like or marking it as a solution!
Feel free to reach out.Get Shopify free trial 1$/mon
 EMAIL ME  Motivate me by  PAY ME
DMMinis
New Member
7 0 0

Worked perfectly. Thank you so much for your help!