larger menu font on the smartphone

Hi,

In order to have a larger menu font for an iPhone display, I wrote the following in the CSS:

#Side_slide #menu ul li span {

  font-size: 20px! important;

}

Unfortunately the font size doesn't change, why not?

Website: https://www.implantologie-ratingen.de/


Thanks

Comments

  • Hello,

    It is not working because you do no use the Side Slide style but the Classic one.

    Use the following code instead:

    @media only screen and (max-width:767px) {
       #menu ul li span{
      font-size:20px! important; 
    }
    }
    

    Thanks

Sign In or Register to comment.