AA226
November 26, 2024, 11:09am
1
Hey community,
Is it possible to help me in the mobile view, the arrow in the product page so close to the end of the screen.
Is it possible to remove a little the arrrow from the side screen WITHOUT touching the picture, i need the picture to stay full screen please ?
Thanks in advance
psw : kingaaliya
View
Hello @AA226
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
@media screen and (min-width:749px){
.my-gallery .slick-next, .slick-prev{
left: 9px !important;
}
}
Result:
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Hello @AA226
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.
@media (max-width: 749px) {
.slick-prev {
left: 3px;
}
.slick-next {
right: 3px;
}
}
Thanks
AA226
November 26, 2024, 1:40pm
4
Thank you,
You’re the only one that work. Just when you click one on the button to see the next picture, the left button move and go back on the place he used to be (so close to the side of the screen), do you have a solution for this please?