Hello, can someone help me please to remove the arrows under those both featured collections on the homepage? And that the bottom padding is much smaller? it is RIDE THEME.
Thanks!
A user sought help removing navigation arrows from featured collections on their Shopify store’s homepage (using the Ride theme) and reducing bottom padding between sections.
Initial attempts:
.slider-buttons.no-js-hidden with CSS display:none!important was added to override existing styles.slider-button--prev and .slider-button--next)Working solution:
A different contributor provided custom CSS targeting the specific Shopify section IDs, which successfully:
display: nonemargin-top: 0px !important on the collection list and rich text sectionsImplementation: The code was added to the theme.liquid file before the </body> tag.
Status: Resolved - the user confirmed the final solution worked.
Hello, can someone help me please to remove the arrows under those both featured collections on the homepage? And that the bottom padding is much smaller? it is RIDE THEME.
Thanks!
Hi @atm19 Please add the code in your theme.css/base.css/style.css file which is available in your theme.
.slider-buttons.no-js-hidden {
display: none;
}
If you are not sure where is your theme.css/base.css/index.css/style.css file please follow the steps:
Result:
If you will unable to implement the same then I’m happy to do this for you, let me know. I can implement the code changes so that this will work well for you.
Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!
Best Regards
Sahil
Hi, thanks but it doesnt work. Do you have any other options?
Hi @atm19 Please use this code.
.slider-buttons.no-js-hidden {
display: none !important;
}
Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!
Best Regards
Sahil
Still doesnt work:(
Hi @atm19 Please try to add this code.
button.slider-button.slider-button--prev {
display: none !important;
}
button.slider-button.slider-button--next {
display: none !important;
}
Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!
Best Regards
Sahil
Doesnt work… Any other options please
Hello @atm19 ,
Please add the below mentioned code to remove the extra space between sections and arrows.
Copy & Paste the code at the bottom of theme.liquid file before tag and save.
section#shopify-section-template--21376786661720__collection_list_G8qAxg { margin-top: 0px !important; } section#shopify-section-template--21376786661720__rich_text_LV93xw { margin-top: 0px !important; } button.slider-button.slider-button--prev { display: none; } button.slider-button.slider-button--next { display: none; }Output -:
I hope the solution helps you.
Please let me know if you have any query.
Thank you.
It worked, Thanks!!!