Kuroshi Posted May 10, 2019 Report Share Posted May 10, 2019 I have a tabular report that I allow to be edited at line level. When the boxes appear for editing, they are really huge and i don't want that. I just want to make them a smaller font. Is this possible? You can refer on the attached screenshot. Quote Link to comment Share on other sites More sharing options...
Barbie Posted May 10, 2019 Report Share Posted May 10, 2019 Hi Batchini, Yes, that is possible. You need to add a Header and Footer on that particular DataPage. And then paste this code in the Header: <style> input[name*="InlineEdit"]{ font-size: 10px; } </style> Note: You need to disable first the HTML editor under Advanced Tab before pasting the code. Also, you can change the font-size based on your preferred size. I hope this works for you. Quote Link to comment Share on other sites More sharing options...
telly Posted May 10, 2019 Report Share Posted May 10, 2019 Hi - Can we change the color of the text, cause I'm having that kind of issue(inside the inline edit)? Quote Link to comment Share on other sites More sharing options...
kpcollier Posted May 10, 2019 Report Share Posted May 10, 2019 11 minutes ago, telly said: Hi - Can we change the color of the text, cause I'm having that kind of issue(inside the inline edit)? Just a little tweak to the code Barbie provided. <style> input[name*="InlineEdit"]{ color: black; } </style> Of course, change 'black' to the desired color. Quote Link to comment Share on other sites More sharing options...
Barbie Posted May 17, 2019 Report Share Posted May 17, 2019 <style> input[name*="InlineEdit"]{ color: black !important; } </style> I just made a minimal modification on kpcollier's code. 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.