1
0
-1

We'd like to make the font size larger on smaller screens. How do we do this?


    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      You may want to start with these as suggestions and modify from there. Using a tool like Chrome Developer Tools you can preview your changes before adding them to your stylesheet.

      @media only screen and (min-device-width : 350px) and (max-device-width : 550px) {
      
      p {
      font-size: 30px;
      line-height: 34px;
      }
      
      h1, .pageCenterTitle {
      font-size: 30px;
      line-height: 34px;
      }
      
      h2 {
      font-size: 30px;
      line-height: 34px;
      }
      
      h3 {
      font-size: 30px;
      line-height: 34px;
      }
      
      label {
      font-size: 40px;
      line-height: 44px;
      }
      
      ul, li {
      font-size: 40px;
      line-height: 44px;
      }
      
      table#animalSummary {
      font-size: 30px;
      line-height: 34px;
      }
      
      table#animalDetailsAbout {
      font-size: 30px;
      line-height: 34px;
      }
      
      table#description {
      font-size: 30px;
      line-height: 34px;
      }
      
      div#editableAnimalDetailBottom {
      font-size: 30px;
      line-height: 34px;
      }
      
      div#qualities {
      font-size: 30px;
      line-height: 34px;
      }
      
      input, select {
      font-size: 30px;
      line-height: 34px;
      }
      
      input[type='radio'] { 
      transform: scale(2); 
      margin-left: 10px;
      margin-right: 10px;
      padding: 10px;
      }
      
      input[type="checkbox" i] {
      transform: scale(3); 
      font-size: 30px;
      line-height: 34px;
      }
      
      #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;
      }
      
      }
      
      
        CommentAdd your comment...