How should I change the position of notes control on the web form?

How should I change the position of notes control on the web form?
Hi, you can achieve that through JS/jQuery.. I can explain high-level what you need but you will need to adapt to your scenario
// below code will get the DIV element responsible for the social pane with the notes (inspect your page to make sure you have this element there)
var divSocialPane = $("fieldset[aria-label='SOCIAL PANE']").parent();
// now that you have stored in an object, you can remove it from the page
$("fieldset[aria-label='SOCIAL PANE']").parent().remove();
// now you need to identify where you want to place it, below example would put it after the submit/action buttons
$(".actions").append(divSocialPane);
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.