I put following code in additional CSS area to make some text big. and it worked.
p.dai{
font-size:2.6rem;
font-weight:bold;
line-height:3.8rem;
border:0px solid #000;
/*margin:1.6rem 0.4rem 1.6rem 0.4rem;*/
}
I put the following code in the additional CSS area to make the same text smaller on mobile screen. But it doesn’t work. How can I make this work?
@media only screen and (max-width: 1023px){
p.dai{
font-size:1.9rem;
font-weight:bold;
line-height:2.6rem;
border:0px solid #000;
/*margin:1.6rem 0.4rem 1.6rem 0.4rem;*/
}
}