Hi there,
I am a Cornerstone user. I used the following code to adjust font size based on the screen size. It works for each web page that I added such code, but it takes time to add it to each web page. How to use such code as global code, so it works for all the web pages?
Thanks,
Chris
@media screen and (max-width: 720px){
h1 {
font-size: 44px !important;
}
h2 {
font-size: 32px !important;
}
h4 {
font-size: 24px !important;
}
}