Hi,
I would like all text throughout my entire site to be uppercase (headings, descriptions, titles, etc.) How can this be achieved in the Dawn 10.0 theme? Thanks in advance for any assistance!
Hi,
I would like all text throughout my entire site to be uppercase (headings, descriptions, titles, etc.) How can this be achieved in the Dawn 10.0 theme? Thanks in advance for any assistance!
Hi @bougli ,
Try this.
body.gradient {
text-transform: uppercase;
}
Result:
I hope it help.
Hi, @bougli .
Follow These steps,
Go to the online store theme and go to base.css file paste the code mentiond below.
body.gradient {
text-transform: uppercase;
}
Result:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Thank you for your reply. I pasted this at the bottom of base.css, but this did not work.
Thank you for your reply. I pasted this at the bottom of base.css, but this did not work. It worked before I updated my Dawn theme to 10.0
At least on mobile it doesn’t seem to be working
It doesn’t seem to be working on mobile
can you share your store URL and password?
Hello @bougli
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.
h1, h2, h3, h4, h5, .h0, .h1, .h2, .h3, .h4, .h5 {
text-transform: uppercase;
}
p {
text-transform: uppercase;
}
a {
text-transform: uppercase;
}
Hi @bougli ,
Its working now? Did you try to paste it on the custom css?
Go to Customize theme.. choose the Theme Settings > 2nd to the last youll find the Custom CSS.
Add the code here.