1
0
-1

We are using Layout 109. How do I make the menu easier to read on mobile devices?

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      You can add the following CSS

      @media only screen and (min-device-width : 350px) and (max-device-width : 550px) {
      
      #headerMenu {
      border-bottom: 0px;
      border-top: 0px;
      vertical-align: center;
      }
      
      
      #m0m {
      padding: 10px;
      }
      
      .menuLevel0InnerOut, .menuLevel0InnerOver, .menuLevel0InnerDown {
      font-size: 28px;
      }
      
      
      .menuLevel1InnerOut, .menuLevel1InnerOver, .menuLevel1InnerDown {
      font-size: 30px;
      padding-top: 15px;
      padding-bottom: 15px;
      }
      
      }


      You may also want to add this style to increase your overall font size on your web pages.

      p {
      font-size: 30px;
      line-height: 34px;
      }
      
      
        CommentAdd your comment...