Font Size on Responsive view

Hi

I want to increase font size in responsive view. I have tried custom css but its not working.


@media only screen and (max-width: 479px){
.h4 {
font-size: 17px !important;

    line-height: 26px !important;

}}

@media only screen and (max-width: 767px) and (min-width: 300px){

.h1 {
font-size: 27px !important;

    line-height: 35px !important;

}}


@media only screen and (max-width: 767px) and (min-width: 300px){

.p {
font-size: 15px !important;
   line-height: 24px !important;
}}  




Comments

Sign In or Register to comment.