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
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!
To complete your requests, please follow these steps:
@media screen and (max-width: 768px){
a.header__heading-link span {
font-size: 15px !important;
}
}
Here is the result:
I hope this helps
Best,
Daisy