Hi @burgerino,
You can change the current icons for next and previous button of the carousel navigation with custom CSS code. For example:
.botiga-flex-direction-nav a:before {
border: none;
}
.botiga-flex-nav-prev a:before {
-webkit-transform: translateX(2px) rotate(0deg);
transform: translateX(2px) rotate(0deg);
}
.botiga-flex-nav-next a:before {
-webkit-transform: translateX(-2px) rotate(0deg);
transform: translateX(-2px) rotate(0deg);
}
.botiga-flex-nav-prev a:before,
.botiga-flex-nav-next a:before {
background-position: center center;
background-size: contain;
background-repeat: no-repeat;
width: 40px;
height: 40px;
}
.botiga-flex-nav-prev a:before {
background-image: url('Your_Previous_Icon_Image_URL');
}
.botiga-flex-nav-next a:before {
background-image: url('Your_Next_Icon_Image_URL');
}
Replace Your_Previous_Icon_Image_URL and Your_Next_Icon_Image_URL with URLs to your images uploaded into your site’s media library.
To apply custom CSS code to your site, add it to Additional CSS under Appearance menu > Customize.
Hope this reply helps.