I'm using the Easy HTML Macro to display a button and open a Jira Issue Collector. The code works perfectly in an HTML form and within the Easy HTML Macro edit screen. However, when I run it on the Confluence site it displays in a window so small that I can't actually see the form.
Has anyone seen this issue before and know how to fix it?
Hi @Danny D. and welcome to the community!
Recently I replied to another question about the same problem. You can read the solution here, but long story short, use this html:
<html>
<body>
<div>
YOUR SCRIPT HERE
</div>
</body>
</html>
And use this css:
div {
height: 600px;
}
That should solve your problem! (take a look at the above mentioned thread to look for the pros and cons of the solution I provided)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.