Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.
const element = document.querySelector('.text-class');
if (element) {
element.textContent = element.textContent.toUpperCase();
}
for sentence case javascript
const element = document.querySelector('.text-class');
if (element) {
const text = element.textContent.toLowerCase();
element.textContent = text.replace(/(^\w|\.\s*\w)/g, c => c.toUpperCase());
}