RonAnderson Posted July 21, 2023 Report Share Posted July 21, 2023 Hi, I have a submission datapage which contains a textbox with an associated "Confirm" box. I've changed the background and border colour of the Barcode_ID textbox with code:- input#InsertRecordBarcode_ID {background: #F6817A;} input#InsertRecordBarcode_ID {border-color: rgb(255, 0, 0);} I've identified the id of the Confirm textbox from:- I've amended the code to change the Confirm Barcode ID box as:- input#InsertRecordBarcode_ID@Confirm {background: #F6817A;} input#InsertRecordBarcode_ID@Confirm {border-color: rgb(255, 0, 0);} But it has no effect. Please... What am I missing? I also have this arrangement in a report datapage. Will this need to be different too? Thanks in anticipation, Ron Quote Link to comment Share on other sites More sharing options...
RonAnderson Posted July 21, 2023 Author Report Share Posted July 21, 2023 Luis at Caspio really helped me with this. For anyone who has the same issue, here's the remedy:- <style>input[id*='InsertRecordBarcode_ID'] {background: #F6817A !important;border-color: rgb(255, 0, 0) !important;}</style> This should be placed in the header with the HTML editor disabled. 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.