Hello:
I need my text on the video banner to be smaller on mobile view. It is blocking the image
Url:ausomeapparelco.com
Issue: The video banner heading text is too large on mobile, obscuring the image on ausomeapparelco.com.
Proposed fix: Add a mobile-specific CSS rule via Shopify theme files.
Rationale: The media query applies only on mobile widths, reducing the heading size and constraining its width to avoid covering key parts of the banner image.
Artifacts: A screenshot was provided showing the expected smaller heading on mobile (image helps illustrate the outcome).
Status: A concrete solution was provided with steps and CSS. No confirmation from the original poster yet; resolution pending.
Hello:
I need my text on the video banner to be smaller on mobile view. It is blocking the image
Url:ausomeapparelco.com
Hi @bnbrown88
Try this one.
@media only screen and (max-width: 550px){
h2.banner__heading.inline-richtext.h2 {
font-size: 1.5rem;
width: 50%;
}
}
And Save.
Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!