Question
1
Replies
18
Views
Posted: February 17, 2021
Last activity: February 18, 2021
Radio buttons overlap when using dynamic layout inline after upgrade to PEGA8.4
Hi There we got an issue with radio buttons overlap when we upgrade the PEGA 7.2 to PEGA 8.4
I have tried below options but non of them worked.
- Wrap text in presentation tab of property panel
- Under float option, check the “Set layout width to auto”.
How could we increase the width of dynamic lay out or gap between the radio buttons.
***Edited by Moderator: Pooja Gadige to change category from Product to Upgrade, add platform capability tag***
@PercisC3
Can you do Inspect Element on the Radio button and try adding 'margin-left:10px;' CSS and check? If it helps then you can put the CSS in a class and add it under Advance Presentation Option.
CSS can be added to any stylesheet -
<style>
.testclass{
margin-left:10px;
}
</style>