How can I automatically convert text into math?

Topic summary

A user seeks to automatically convert text into mathematical formatting on their online store. The specific text requiring conversion is highlighted in yellow in an attached screenshot.

Solution provided:

  • Navigate to Online Store → Theme → Edit code → Assets
  • Add CSS code: text-transform: math-auto !important; to the .smallcaps class
  • Insert this code at the bottom of the theme.css file

The original poster confirmed the solution was helpful. The discussion appears resolved with a working CSS-based approach for the text transformation.

Summarized with AI on November 20. AI used: claude-sonnet-4-5-20250929.

Hello @admintb

Which text do you want to change?

@oscprofessional The text is yellow marked

Hello @admintb

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.

.smallcaps {
    text-transform: math-auto !important;
}
1 Like

@oscprofessional Thank you!

1 Like