Trying to change the heading font size of all the customer pages in Dawn theme. I have code in base.css to change the heading size of the contact us, product, and faq pages to 32px. Cannot find a way to change the customer account, or customer login page headings though. Can anyone help?
For reference I included pictures. I want the font that says Account to be the same size as the font that says FAQ.
Do you want to share your URL?
See if this works. What it does is if you have a scalable font (which you do), it will automatically scale it from 32px down to 18px the smaller the viewport
(Store->Theme->Edit code->customer.css ->paste bellow code in bottom of file)
h1#login {
font-size: clamp(18px,2vw,32px);
}
Let me know if it sucks somehow.
1 Like
Thanks so much for your reply. Unfortunately this did not work. I would like the word Account to be similar size the words order history. Do you have any other ideas?
Oi - I had to register on your store for it which I did 
So the same place as before and just do this instead of the one before.
.customer.account h1, h1#login {
font-size: clamp(18px,2vw,32px);
}
You saw that error on the page?
It is now the correct size and I may adjust a tad but that’s easy. I do still see that error though. Any thoughts on that?