Hi everyone! I am trying to make my Image with Text Overlay to properly resize on my phone version. It works great on desktop but gets cut off and appears offset when viewed on an iPhone, however, it works great on my Samsung S8 plus. I understand that I need to make add some code my theme.scss file, however I am unable to figure it out, and other solutions on this forum don't work for me. I believe I need to have different settings for the phone version and the desktop version. Can anyone help me with this? Any help is greatly appreciated.
The website is www.boomingbeats.com password:epsilon
Best regards,
Jim
Solved! Go to the solution
Hello
Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.liquid
@media only screen and(max-width:500px){
.mega-title--large {
font-size: 27px;
width: 80%;
}
.search input[type="text"] {
width: 75%;
font-size: 13px;
}
.search input[type="submit"] {
width: 23%;
font-size: 13px;
}
}
This is an accepted solution.
@media only screen and(max-width:500px){
.mega-title--large {
font-size: 27px;
width: 100%;
}
.search input[type="text"] {
width: 75%;
font-size: 13px;
}
.search input[type="submit"] {
width: 23%;
font-size: 13px;
}
}
update it
User | Count |
---|---|
25 | |
24 | |
23 | |
19 | |
13 |