Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello,
The desktop looks fine, but on the mobile version the title "DoggyDreamShop" is 2 lines and would like to make it smaller.
Store name: https://doggydreamshop.us/
Thank you
Hey, it's pretty simple. You'll need to add a tiny bit of CSS code that will stop it from wrapping. Here's the code:
header .header__heading-link .h2 {
text-wrap: nowrap;
}
Go to Online Store > Themes > Edit Code.
Open the CSS File:
You can make a theme duplicate before working on it if you're worried.
If you’re not comfortable with coding, EasyEdits lets you visually resize headers and preview changes on mobile. You can try it for free and keep your edits forever. Fair disclaimer, I'm the developer.
Let me know what ends up working for you or if I can help further!
@media screen and (max-width: 768px){
a.header__heading-link span {
font-size: 15px !important;
}
}
I hope this helps
Best,
Daisy