Re: Remove slider controls for featured collection - craft theme

Solved

Remove slider controls for featured collection - craft theme

AHBEessentials
Excursionist
23 0 5

Hey I'm looking for some coding that will remove the slider controls for the featured collection option. I am using craft theme. I want the arrows and number removed, but want to keep the slider. I had it that way, but when I updated my theme the code didn't work anymore. 

 

store link: capecandleco.com

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
8403 2009 2466

This is an accepted solution.

Hi @AHBEessentials 

Do you mean this one?

Made4uoRibe_0-1695136694334.png

If it is 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:

 

@media only screen and (max-width:989px){
.slider-buttons.no-js-hidden {
    display: none;
}
}

 

  • And Save.
  • Result:
  • Made4uoRibe_1-1695136776903.png
If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
8403 2009 2466

This is an accepted solution.

Hi @AHBEessentials 

Do you mean this one?

Made4uoRibe_0-1695136694334.png

If it is 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:

 

@media only screen and (max-width:989px){
.slider-buttons.no-js-hidden {
    display: none;
}
}

 

  • And Save.
  • Result:
  • Made4uoRibe_1-1695136776903.png
If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
AHBEessentials
Excursionist
23 0 5

That worked. Thank you so much!