We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Need help to remove an element from the website

Solved

Need help to remove an element from the website

thisiskishor
Excursionist
22 1 7

Hello,

There is a small navigation icon/button at the end of the slides on both mobile devices and desktops, I want to remove them altogether and join the two columns without the whitespace in the middle. How can I do that?
Link: https://fitnessnbalance.com/
Image for reference:  

Screenshot 2024-06-10 at 10.40.59 PM.png

Accepted Solution (1)

nvchien
Shopify Partner
55 23 14

This is an accepted solution.

Hi @thisiskishor,

 

You can go to edit theme, find the "base.css" file and update below code:

.slideshow__controls,
.multicolumn .slider-buttons {
   display:none !important;
}

 

Hope this helps!

- If this solution helped you out, please consider accepting it as a solution and giving it a thumbs-up. Your feedback is valuable to me and the community!
- You can also follow more tips and tricks from my blog.
- Find me on Linkedin

View solution in original post

Replies 4 (4)

nvchien
Shopify Partner
55 23 14

This is an accepted solution.

Hi @thisiskishor,

 

You can go to edit theme, find the "base.css" file and update below code:

.slideshow__controls,
.multicolumn .slider-buttons {
   display:none !important;
}

 

Hope this helps!

- If this solution helped you out, please consider accepting it as a solution and giving it a thumbs-up. Your feedback is valuable to me and the community!
- You can also follow more tips and tricks from my blog.
- Find me on Linkedin
thisiskishor
Excursionist
22 1 7

Thank you very much! This is exactly what I wanted!

Made4uo-Ribe
Shopify Partner
10211 2427 3079

Hi @thisiskishor 

Do you mean like this?

Made4uoRibe_0-1718124565258.png

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

 

 

.slider-button--next, .slider-button--prev {
    display: none;
}
.slider-counter__link {
    padding: 1rem 0;
}

 

 

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.
thisiskishor
Excursionist
22 1 7

Hi, Thank you for the solution. 
I wanted the whole button to be removed.