MarkMayhrai Posted May 7, 2023 Report Share Posted May 7, 2023 Hi Communiity, Requesting support to: Change the background of a "Single Record Update" page to transparent so that the background of the form can be seen. Relocate the update button to the position shown in pic and Change the button name to select. Quote Link to comment Share on other sites More sharing options...
Volomeister Posted May 8, 2023 Report Share Posted May 8, 2023 Hi @MarkMayhrai 1. You can add the following CSS to the header of your DataPage: <style> [data-cb-name="cbTable"]{ background-color: transparent; } [data-cb-name="cbTable"] .cbUpdateButtonContainer { background-color: transparent; border: none; padding: 0; } .cbUpdateButtonContainer:not(.customUpdate) { display: none; } .cbHTMLBlockContainer.cbFormData { padding: 0; } </style> 2. Make your section as 4 column layout, add an HTML block next to drop-down, and add the following HTML code to this block: <div class="cbUpdateButtonContainer customUpdate"><input type="submit" name="Mod0EditRecord" value="Select" class="cbUpdateButton"></div> 3. You can change the name under localization, but doing the previous two steps should be enough to change the name: Quote Link to comment Share on other sites More sharing options...
MarkMayhrai Posted May 8, 2023 Author Report Share Posted May 8, 2023 Hi, everything worked! Thank you! 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.