I am working on autixir theme. My mobile preview is a bit disturbing because of extra spacing. How can i remove this space while not disturbing my laptop preview as its perfect.
To customize only mobile view, you can use CSS media queries.
For example:
@media only screen and (max-width: 600px) {
body {
your code here
}
}
If you want us to provide the complete code, kindly share your store’s URL
Hi @mahasobhi047 ,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file style.css
Step 3: Paste the below code at the bottom of the file → Save
@media(max-width:767px){
.ltn__slide-item{
padding:0 !important
}
.slide-item-info-inner{
margin-bottom:0 !important
}
}
Hope my solution works perfectly for you!
Best regards,
Oliver | PageFly
Hey @mahasobhi047
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code in the bottom of the file above tag
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hello @mahasobhi047
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > theme-custom.css and paste this at the bottom of the file:
@media(max-width:992px){
.ltn__slide-item{
padding:0 !important
}
.slide-item-info-inner{
margin-bottom:0 !important
}
}
Hello @mahasobhi047
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->theme-custom.css>Add this code at the bottom.
@media (max-width: 768px){
.slide-item-info-inner.ltn__slide-animation {
padding: 0 !important;
}
}

