Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #337343
    Edwin
    Participant

    Hello,

    Regarding: Appearance/Customize/Additional CSS

    I was making small adjustments to site font styles and then suddenly I was no longer able to view changes in editor.

    See for yourself go to taxresidents.com check it on mobile, tablet and then desktop. Desktop seems to display somewhat correct, but still I cannot see changes in editor, like if I change body h1{ font-size: 20px important;} to 1px, it does not change. Also, mobile and tablet are stuck at small h1 sizes which are not proportional. Other elements seem to work such as if I adjust line-height et cetera but not font-size or font-weight.

    What is causing this? It just seemed to happen all at once while I was making simple adjustments which I have done many many times before. Then it just showed incorrect font size and no matter what I did it would not rectify. It just seems frozen, I have cleared cache on cloudflare, and WP, browser et cetera but this does not resolve the issue.

    Can you assist please?

    Edwin

    • This topic was modified 4 days, 23 hours ago by Edwin.
    #337346
    minal
    Keymaster

    Hello @edwin,

    It seems your custom code has space issues. like you added font-family: book antiqua, palatino, serif !important;

    but the font-family text has a space in front of it. so that your CSS is not working as expected;

    try these updated CSS snippets

    body h1 {
      font-family: book antiqua, palatino, serif !important;
      font-size: 22px !important;
      font-weight: semi-bold !important;
      color: #374c52 !important;
      padding-bottom: 10px !important;
      padding-top: 0px !important;
      line-height: 1.25em !important;
    }
    
    

    Please make sure you trim the spaces on your CSS code.

    Sincerely,

    Minal

    #337348
    Edwin
    Participant

    Hello Minal,

    Yes, I think that was the issue. It looks much better!

    Thank you very much,

    Edwin

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.