How do i remove the Scroll bars from the custom widget?
Inside the iframe code have:
<head>
<style>
body {
overflow: hidden;
}
</style>
</head>
Thanks, JD. can i just paste this anywhere? sorry, im not familiar with code
@hello22135 I don’t know what your current code (assuming you used code in the iframe and not just connected it to an external website),
Basically, the code inside the iframe should be like:
<html>
<head>
<!-- some code here -->
</head>
<body>
<!-- some code here -->
</body>
</html>
So if your current code is like that, you don’t have to paste the tags only the in-between.
If you already have tags, you don’t have to paste the tags just copy the css and paste it in between the current style tags.