Move Button On Featured Collection To The Top

Solved

Move Button On Featured Collection To The Top

NinoB97
Explorer
63 0 26

How can i move the button that says ''Álles Bekijken'' to the top Above my products under the text ''Meest verkocht''

i have tried multiple codes but they didnt work for me so thats why am asking, would really appreciate the help !

Screenshot 2024-08-02 110631.png

Accepted Solutions (3)

BSSCommerce-B2B
Shopify Partner
1972 564 566

This is an accepted solution.

Hi @NinoB97 , 

I have reviewed your requirement, you just need to edit css script and the issue will be resolved.  You can follow my instructions! 

 

Step 1: Go to Admin -> Online store -> Theme > Edit code:

BSSCommerceB2B_0-1722595528027.png

 

Step 2: Search for the file base.css. And add this code snippet to the end of the file.

@media only screen and (max-width: 768px) {
    div#collection-template--23130500792660__featured_collection {
        display: flex !important;
        flex-direction: column !important;
    }

    .center.collection__view-all.scroll-trigger.animate--slide-in {
        order: 0;
    }

    slider-component.slider-mobile-gutter.slider-component-full-width.page-width.scroll-trigger.animate--slide-in {
        order: 1;
    }
}

In this step, I edit css only mobile view screen.

Step 3: Save your code and reload this page.

=>> The result: 

BSSCommerceB2B_1-1722595654205.png

I hope these instructions will help you. If they are helpful, please give us likes and mark as the solution.

Have a nice day sir! 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

View solution in original post

niraj_patel
Shopify Partner
2391 516 515

This is an accepted solution.

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px) {
h2.title.inline-richtext.h2.scroll-trigger.animate--slide-in {
margin-bottom: 0 !important;
}
.collection__title.title-wrapper {
margin-bottom: 0 !important;
}
}
</style>

niraj_patel_0-1722597846826.png
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

View solution in original post

BSSCommerce-B2B
Shopify Partner
1972 564 566

This is an accepted solution.

Hi @NinoB97 , 

We're happy to see that our suggestion helped you solve the issue. 

If you want the button and text closer to each other so its more lined, you add this css snippets on previous my customize comment.

.collection__title.title-wrapper {
    margin-bottom: -5px;
}

Save and reload page

The result will be: 

BSSCommerceB2B_0-1722598063162.png

I hope these instructions will help you. If they are helpful, please give us likes and mark as the solution.

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

View solution in original post

Replies 9 (9)

Small_Task_Help
Shopify Partner
880 29 78

Hi,

 

Can you please share your store URL?

To Get Shopify Experts Help, E-mail - hi@ecommercesmalltask.com
About Us - We are Shopify Expert India
At Google My Business - Ecommerce Small Task - Hire Shopify Developers Ahmedabad

BSSCommerce-B2B
Shopify Partner
1972 564 566

This is an accepted solution.

Hi @NinoB97 , 

I have reviewed your requirement, you just need to edit css script and the issue will be resolved.  You can follow my instructions! 

 

Step 1: Go to Admin -> Online store -> Theme > Edit code:

BSSCommerceB2B_0-1722595528027.png

 

Step 2: Search for the file base.css. And add this code snippet to the end of the file.

@media only screen and (max-width: 768px) {
    div#collection-template--23130500792660__featured_collection {
        display: flex !important;
        flex-direction: column !important;
    }

    .center.collection__view-all.scroll-trigger.animate--slide-in {
        order: 0;
    }

    slider-component.slider-mobile-gutter.slider-component-full-width.page-width.scroll-trigger.animate--slide-in {
        order: 1;
    }
}

In this step, I edit css only mobile view screen.

Step 3: Save your code and reload this page.

=>> The result: 

BSSCommerceB2B_1-1722595654205.png

I hope these instructions will help you. If they are helpful, please give us likes and mark as the solution.

Have a nice day sir! 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

NinoB97
Explorer
63 0 26

this worked, great!

NinoB97
Explorer
63 0 26

i want the button and text closer to each other so its more lined can you help me out? i want it like this:

 

Screenshot 2024-08-02 131152.png

 

niraj_patel
Shopify Partner
2391 516 515

This is an accepted solution.

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px) {
h2.title.inline-richtext.h2.scroll-trigger.animate--slide-in {
margin-bottom: 0 !important;
}
.collection__title.title-wrapper {
margin-bottom: 0 !important;
}
}
</style>

niraj_patel_0-1722597846826.png
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
BSSCommerce-B2B
Shopify Partner
1972 564 566

This is an accepted solution.

Hi @NinoB97 , 

We're happy to see that our suggestion helped you solve the issue. 

If you want the button and text closer to each other so its more lined, you add this css snippets on previous my customize comment.

.collection__title.title-wrapper {
    margin-bottom: -5px;
}

Save and reload page

The result will be: 

BSSCommerceB2B_0-1722598063162.png

I hope these instructions will help you. If they are helpful, please give us likes and mark as the solution.

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

NinoB97
Explorer
63 0 26
BSSCommerce-B2B
Shopify Partner
1972 564 566

Dear my friend @NinoB97 , 

We're happy to see that our suggestion helped you solve the issue.

This can be a reference for other merchants if they have an issue like you.

Should you need any further information, please do not hesitate to contact us by tagging directly at Community post.

We will check and let you know soon.

Thanks in advance.

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

niraj_patel
Shopify Partner
2391 516 515

Hello @NinoB97 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px) {
.section-template--23130500792660__featured_collection-padding{
position: relative;
}
#shopify-section-template--23130500792660__featured_collection h2.title.inline-richtext{
position: absolute;
bottom: 63%;
z-index: 99;
left: 94px;
color: #fff !important;
}
#shopify-section-template--23130500792660__featured_collection .center.collection__view-all{
position: absolute;
top: -2px;
left: 0;
right: 0;
}
}
</style>

niraj_patel_0-1722595668737.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com