I have a page which contains a script tag which pulls in a survey form from JotForm. Basically placing a tag in the HTML pulls in content from the 3rd party, which is a form. The code pulled in is a full page ie: contains html element which contains an iframe.
The problem is that there is a class called form-all which has a width set at 690 which does not fit in our site, it's too wide so cuts off.
I need to know how I can remove this width on the form-all class from my html code?
The structure would be something like:
<html> <!-- My html element //-->
...
...
<html> <!-- html element pulled in from 3rd party code, everything within is 3rd party //-->
<iframe>
<div class='form-all'>
</div>
</iframe>
</html>
</html>
How do I remove the width on form-all by placing code in my code which I control?
Thanks.