Hi domir21,
1/ To remove the arrow icon, I have added the following code to the templates/ja_colab/css/custom.css file:
.btn.btn-outline-dark:after,
.btn.btn-outline-light:after {
display: none;
}
2/ To view all the parts of the solutions section on the mobile, you can add the following CSS code:
@media (max-width: 767.98px) {
.features-action {
display: none !important;
}
.swiper-wrapper {
flex-direction: column;
transform: none !important;
width: 100%;
}
.slide-feature-intro .swiper .swiper-slide {
margin-right: 0 !important;
}
}
Hope this helps!