Shopify themes, liquid, logos, and UX
Hi, I would like to change the size of my banner on the mobile version to something like this:
my page url: https://skinnyartspace.com/
Solved! Go to the solution
This is an accepted solution.
Hi @skinnystick
Go to your Online store > Themes > Edit code > open theme.liquid file, add code below under <head> tag
<style>
@media (max-width: 767px) {
#Banner-template--21681505534263__4d405492-4f5f-4a7e-a390-bff21aa89d56 .banner__media {
height: 55rem;
}
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
This is an accepted solution.
Hi @skinnystick
Please update code and check again
<style>
@media (max-width: 767px) {
#Banner-template--21681505534263__4d405492-4f5f-4a7e-a390-bff21aa89d56 .banner__media {
height: 71rem !important;
}
#Banner-template--21681505534263__4d405492-4f5f-4a7e-a390-bff21aa89d56 .banner__content { min-height: 70rem !important; }
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Go to Online Store
2) Edit Code
3) Find base.css file
4) Add the following code in the bottom of the file
@media only screen and (max-width: 600px) {
.banner__media.media.banner__media-half {
height: 50rem !important;
}
}
This is an accepted solution.
Hi @skinnystick
Go to your Online store > Themes > Edit code > open theme.liquid file, add code below under <head> tag
<style>
@media (max-width: 767px) {
#Banner-template--21681505534263__4d405492-4f5f-4a7e-a390-bff21aa89d56 .banner__media {
height: 55rem;
}
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Thank you. Is there a way to make the word shift to the centre of the page?
Hi @skinnystick
Please add this code also
<style>
@media (max-width: 767px) {
#Banner-template--21681505534263__4d405492-4f5f-4a7e-a390-bff21aa89d56 .banner__media {
height: 71rem;
}
#Banner-template--21681505534263__4d405492-4f5f-4a7e-a390-bff21aa89d56 .banner__content { min-height: 70rem; }
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Hi, it doesn't work.
This is an accepted solution.
Hi @skinnystick
Please update code and check again
<style>
@media (max-width: 767px) {
#Banner-template--21681505534263__4d405492-4f5f-4a7e-a390-bff21aa89d56 .banner__media {
height: 71rem !important;
}
#Banner-template--21681505534263__4d405492-4f5f-4a7e-a390-bff21aa89d56 .banner__content { min-height: 70rem !important; }
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
It works. Thank you
Very welcome
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Hi there, I tried your code. But somehow, it doesn't solve my issue. Can you please help? My website is www.maisonsabun.com
Could you explain your request?
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
I wanted my mobile banner to be exact like this size. I tried to copy your code and paste it in my theme.liquid file, however it doesn't work. Can you please help?
You can try to use this code instead
<style>
@media (max-width: 749px) {
.banner__content {
min-height: calc(100vh - 200px) !important;
}
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Thank you so much, it works perfectly now!
You are very welcome!
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025