Hello, I am looking for a way to move photo slider button. This is for mobile version only. My website is https://meteorea.com/
This is how it looks now:
I want to move these button onto the photo so that the product title and price would be right under the photos.
This is the example how it should be:
1 Like
Hi @paulverseckas
This is Henry from PageFly - Landing Page Builder App
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at bottom of the file → Save
@media (max-width: 767px){
.slider-buttons.no-js-hidden.quick-add-hidden {
position: absolute;
z-index: 99;
bottom: 0;
width: 100%;
}}
Hope that my solution works for you.
Best regards,
Henry | PageFly
1 Like
Hi @paulverseckas
Do you mean like this?
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:
@media only screen and (max-width: 749px){
.grid__item.product__media-wrapper .slider-buttons {
position: absolute;
bottom: 10px;
z-index: 9;
left: 50%;
transform: translateX(-50%);
}
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Amazing thank you very much! This community is so awesome, I get replies in a few minutes and everything works!
1 Like
Yeahh!! you are welcome @paulverseckas 