Is it possible to change the width of a custom iframe in Microsoft Dynamics CRM that is currently set at 1900px?
<div id="mainContainer" class="classname_here" style="max-width: 1900px">
I was able to change it to 100% using a browser extension. Can this be done within Microsoft Dynamics CRM as well?
.classname_here {
max-width: 100% !important;
}
Or is the 1900px width limitation set by Microsoft Dynamics CRM and cannot be altered?
Thank you for your help!