• Resolved landg

    (@landg)


    Hello. Since the 1.83 update, all H3s on pages (but not posts) on my site are uppercase.

    In customize > typography > headings > text transform, I’ve tried selecting “none” and “capitalize”, but when I apply the changes, it reverts to uppercase. I’ve tried clearing cache and using different browsers.

    Any ideas what could be causing this?

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @landg,

    Thank you for the query. I am happy to help out.

    I need more information to better understand the context.

    Are you referring to the titles for each episode appearing on your English Podcast page?

    Regards,
    Kharis

    Thread Starter landg

    (@landg)

    Thanks for replying, Kharis.

    Yes, I’m referring to the titles for each episode on the linked page, but the problem is on the whole site: all H3 headings on pages (but not posts) are being transformed to uppercase, and it makes no difference which option I select in customize > typography > headings > text transform. (I linked to the podcast page because it has lots of H3 headings, so you can see what I mean.)

    Hi @landg,

    As inspected, your English Podcast page uses page builder plugin and each episode name is a widget title. The widget title in page builder isn’t affected by the theme’s heading settings for it has specific styles written in the main theme’s styles.css:

    .panel-grid-cell .widget-title {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
      font-weight: 600;
      line-height: normal;
      text-transform: uppercase;
      padding-bottom: 10px;
    }

    To diable auto-uppercase, you can override it by adding this CSS code to Appearance > Customize > Additional CSS from dashboard.

    .panel-grid-cell .widget-title {
      text-transform: capitalize;
    }
    

    Hope this reply helps. Let me know your views.

    Regards,
    Kharis

    Thread Starter landg

    (@landg)

    Hi Kharis,

    Thanks so much for looking into this. Yes, it was the Page Builder plugin! I’ve added the CSS from your reply, and it’s working perfectly now.

    Thanks again for your time!

    • This reply was modified 3 years, 4 months ago by landg.

    You’re welcome @landg!

    Please let us know in a new topic if you have any further questions, or if we can provide you with any other assistance.

    Regards,
    Kharis

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘H3 always uppercase since 1.83 update’ is closed to new replies.