Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Excerpt

This macro renders a "sticky box" at the position you say with the contents you put inside the macro body

Code Block
## Sticky box macro by Vertuna LLC
## @param Width:title=Width|type=string|required=true|desc=Width in pixels (numeric)
## @param Height:title=Height|type=string|required=true|desc=Height in pixels (numeric)
## @param Top:title=Top|type=string|required=true|desc=Top in pixels (numeric)
## @param Left:title=Left|type=string|required=true|desc=Left in pixels (numeric)
<div style="position:absolute; z-index:9999; width:${paramWidth}px; height:${paramHeight}px;top:${paramTop}px;left:${paramLeft}px">
$body
</div>

...