Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Re: Removing Vertical Line Next to Filter

Solved

How can I remove the vertical line next to the filter dropdown?

adr5
Excursionist
30 1 14

Hello!

 

Does anyone know how to remove the vertical line that is next to the filter drop down?

 

Screen Shot 2023-10-10 at 1.42.45 PM.png

Accepted Solution (1)

oscprofessional
Shopify Partner
16116 2410 3126

This is an accepted solution.

Hello @adr5 

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.

button.collection__filters__toggle {
    border-right: none !important;
}
button.popout__toggle {
    border-right: none !important;
}

 

Get pass your Store Core Web Vital Free Speed Optimization Audit, Chat on WhatsApp | Skype : oscprofessionals-87 | Email: pallavi@oscprofessionals.com | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify Private App | Shopify SEO | Digital Marketing | Oscp Upsell & Cross sell App : Free | Oscp Sales & Volume Discount App : Free | Custom Pricing Wholesale App : Free

View solution in original post

Replies 5 (5)

Made4uo-Ribe
Shopify Partner
9056 2163 2670

Hi @adr5 

It only that side? or also the sort? 

If its only the filter try this one. 

  • 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:

 

#shopify-section-template--20979592888513__main > div > div > div > nav > div.collection__nav__buttons > button {
    border-right: 0px;
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1696974048513.png
If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
adr5
Excursionist
30 1 14

I added the css code to the theme.css file in assets, but am not seeing any changes. 

 

Would the preview link help? 

https://prtimimxdhfzzz0p-7752355.shopifypreview.com

Made4uo-Ribe
Shopify Partner
9056 2163 2670

Add important on the code like this. 

#shopify-section-template--20979592888513__main > div > div > div > nav > div.collection__nav__buttons > button {
    border-right: 0px !important;
}

And Save. 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

oscprofessional
Shopify Partner
16116 2410 3126

This is an accepted solution.

Hello @adr5 

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.

button.collection__filters__toggle {
    border-right: none !important;
}
button.popout__toggle {
    border-right: none !important;
}

 

Get pass your Store Core Web Vital Free Speed Optimization Audit, Chat on WhatsApp | Skype : oscprofessionals-87 | Email: pallavi@oscprofessionals.com | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify Private App | Shopify SEO | Digital Marketing | Oscp Upsell & Cross sell App : Free | Oscp Sales & Volume Discount App : Free | Custom Pricing Wholesale App : Free
adr5
Excursionist
30 1 14

Thank you! This one worked!