I am adding a form to a webpage. I want to use custom HTML, in addition to some drag-&-drop components. I cannot figure out how to drag the components so they are above the custom HTML - is there a div tag I can use in the custom HTML to control the placement of the drag & drop components?
This broadly explains the logic behind the drop zones :
https://anvil.works/doc/index.html#-div-id-html_templating-custom-html-templates-div-
Can you post your custom html template? I might be able to help.
1 Like
Ah that’s it- thanks. All I needed was to use this html file:
> <div anvil-slot-repeat="default" style="">
> </div>
> <div>All the custom HTML stuff below</div>
2 Likes