Resize icon-caret

I would like to resize the icon-caret in refresh theme or make it to appear at the level of the slider

Nachorc21_0-1711710629363.png

turn it into something like this

Nachorc21_1-1711710657604.png

thanks!

Share preview Link

Hi @Nachorc21

Would you mind to share your store URL? Thanks!

https://abaf7d-8.myshopify.com/?_ab=0&_fd=0&_sc=1

https://abaf7d-8.myshopify.com/?_ab=0&_fd=0&_sc=1

Its password protected.

Also need password to preview store

I need your store url password to preview i can see this is your store url https://abaf7d-8.myshopify.com/password?_fd=0

.slideshow__controls

{

position: static;

}

.slider-button

{

color: #fff;

background: #0e1b4d;

border-radius: 50%;

}

.slider-button–next

{

position: absolute;

right: 10px;

top: 50%;

}

.slider-button–prev

{

position: absolute;

left: 10px;

top: 50%;

}

try this code

Can you try again? password is removed

Thanks! 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 .icon {
    height: 1rem;
} 

.slider-button {
    background: black;
    border-radius: 50px;
    color: white;
}

.slider-buttons.no-js-hidden {
    gap: 10px;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Add This Css In your Edit Code > base.css File

section#shopify-section-template--21228780781892__multicolumn_HCcAYU .multicolumn .slider-button,section#shopify-section-template--21228780781892__multicolumn_kp8hGb .multicolumn .slider-button {
    color: #fff;
    background: #202439;
    border-radius: 50%;
}
section#shopify-section-template--21228780781892__multicolumn_HCcAYU .multicolumn .slider-button[disabled] .icon,section#shopify-section-template--21228780781892__multicolumn_kp8hGb .multicolumn .slider-button[disabled] .icon{
    color: #fff;
}
section#shopify-section-template--21228780781892__multicolumn_HCcAYU .multicolumn .slider-button:not([disabled]):hover,section#shopify-section-template--21228780781892__multicolumn_kp8hGb .multicolumn .slider-button:not([disabled]):hover{
    color: #fff;
}	
section#shopify-section-template--21228780781892__multicolumn_HCcAYU .multicolumn .slider--everywhere+.slider-buttons,section#shopify-section-template--21228780781892__multicolumn_kp8hGb .multicolumn .slider--everywhere+.slider-buttons{
	gap:30px;
}

thanks a lot!! it worked :slightly_smiling_face:

I am wondering if exist the possibility to add the arrows at the level of the images one right and the other left. Somehow as marked in the image

Also the Idea would be that in all multicolumns is shown in the same way. Thank you so much in advance :):