• All of a sudden, I cannot highlight text and change it from Heading 3 to Heading 5. I get a Size Medium(px)at the side but 13 is too small and20 is too big. I get a box with H5 on it but when I go down the page to the text I want to change, this area disappears. How do I fix this? Help would be much appreciated.
    James

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @jamesherring
    If you’d like to change the font size using CSS code then you could follow the below’s code.

    h3 {
      font-size: 16px; // change to any num
    }
    
    /* or */
    
    h5 {
      font-size: 16px; // change to any num
    }

    I hope that will help you to fix the font size issue. Let me know how that goes! ??

Viewing 1 replies (of 1 total)
  • The topic ‘Changing heading size’ is closed to new replies.