Remove scroll in frame - Printable Version +- Logic Machine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9) +--- Thread: Remove scroll in frame (/showthread.php?tid=901) |
Remove scroll in frame - Daponte - 14.07.2017 Hello, I wanted to remove the scroll of a frame, so that it does not allow scrolling within a web, does anyone have a script ?? RE: Remove scroll in frame - admin - 14.07.2017 There's no universal way to do this. Which is the source of your frame - external website or LM visualization page? RE: Remove scroll in frame - Daponte - 14.07.2017 (14.07.2017, 08:18)admin Wrote: There's no universal way to do this. Which is the source of your frame - external website or LM visualization page? External web page RE: Remove scroll in frame - Daponte - 17.07.2017 External web page RE: Remove scroll in frame - admin - 17.07.2017 If you need iframe only to display information, you can try adding this to Custom CSS: Code: iframe { pointer-events: none !important; } This will not hide the scrollbar but will disable any interaction with your iframe. |