User cbb759276f
16-11-2016 16:44:25
Hi
I upgraded our MarvinJS setup from 15.6 to 16.10. With 15.10, MarvinJS was displayed in the top right corner of the web page, with no border/backgound.
However, in 16.10, the embedded MarvinJS now appears within a green border/background, even though the HTML code for our page is the same.
Any suggestions how I can embed MarvinJS with no background/border as before?
Thanks!
Code:
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | |
<title>Marvin JS - Sketch a molecule</title> | |
<link type="text/css" rel="stylesheet" href="../css/doc.css" /> | |
<link type="text/css" rel="stylesheet" href="../js/lib/rainbow/github.css" /> | |
<script src="../js/lib/jquery-1.9.1.min.js"></script> | |
<script src="../js/lib/rainbow/rainbow-custom.min.js"></script> | |
<script src="../gui/lib/promise-1.0.0.min.js"></script> | |
<script src="../js/marvinjslauncher.js"></script> | |
<script> | |
var marvinSketcherInstance; | |
var buttonAttributes; | |
[...] | |
<body> | |
<iframe id="sketch" src="../editorws.html" data-toolbars="education" | |
style="overflow: hidden; min-width: 500px; min-height: 450px; "></iframe> | |
<br><img src="powered.png" /> | |
</body> | |
</html> |