taylorswiftlover Posted May 11, 2019 Report Share Posted May 11, 2019 Hello, I want to turn off the all caps within the reports of my DataPage. The records from my table are not in caps but it seems to be applied by the current default style of the DataPage. Can you please help? Quote Link to comment Share on other sites More sharing options...
SinJunYoung Posted May 11, 2019 Report Share Posted May 11, 2019 You can find the class of that style from the style part of your Styles. Just go to Styles > Edit the Style and go to Source. Find the code that looks like this: text-transform, and remove that style. That should be able to make your texts in normal cases. Quote Link to comment Share on other sites More sharing options...
SinJunYoung Posted May 11, 2019 Report Share Posted May 11, 2019 One other thing, if you only want that style to be applied to a specific DataPage only, you can find the class name again and place this in the DataPage header: <style> [class*="cbResultSetTableCell"] { text-transform: none !important; } </style> I hope this helps. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.