Issue: Text appears too large on mobile for specific sections—homepage hero quote (“Fangirls are the untapped billion of …”) and footer quote (“The term fangirl is too often equated to…”) on sundayfangirls.store.
Proposed fix: Add responsive CSS in the theme’s main CSS file (base.css/style.css/theme.css) using a media query for small screens (max-width: 765px). Example provided:
Follow-up request: Also reduce the main copy size on the About page (e.g., text beginning “This project is a cultural platform with the aim…”). Helper shared a targeted selector for that section and set .hero__rte p to font-size: 30px, with visual result shown. Same edit/save steps apply.
Latest update: User specified three exact paragraphs on the About page to scale down:
“This project is a cultural platform with the aim …”
“It all started with a two minute rant in 2021… inclusion in sports”
“We’ve adopted the pre-order and drop…”
Status: Ongoing. Initial mobile CSS solution provided and demonstrated; further refinement needed to precisely target the listed About page paragraphs. Images are central to understanding results.
Summarized with AI on December 30.
AI used: gpt-5.
Having issues with the text size of things being too big on mobile. Would love to know how to scale down the “Fangirls are the untapped billion of…” and the text above the footer “The term fangirl is too often equated to…” only in mobile view.
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:765px){
.hero__rte.body-size-15.font-body.block-padding.aos-animate p {
font-size: 30px;
}
h2.hero__title.heading-size-9.block-padding.aos-animate {
font-size: 50px;
}
}
Amazing, do you mind helping with one more area? I would love to adjust the text size of all the main copy on the about page that is the size of “This project is a cultural platform with the aim…”. Would you be able to help as well?