Trying to change the size/style of the Help Text underneath the "Which firm referred you to Paro?" field? Not sure where/how exactly to put in the new style *just* for the help text. Can anyone point me in the right direction where exactly I'd make this change, and perhaps provide some sample code?
You could add in CSS that just applies to this page by going to Settings > Advanced Options > Head HTML and adding:
<style> legend { font-size: 12px; }
</style>
This will only apply to this page and only to legend elements (the "This will ensure you receive the appropriate partner discount." is the only legend element on this page).
If you go to your Design Manager and search for the Act2.css file, then use Ctrl + F to search for "legend" within the file, you should see something like this (it may all be on one line as well):
1) Since I don't necessarily want to update it for *everyone* (I'm a contractor and don't want to mess with their main mojo), is there a way to update it for just my form? (or copy that .css file to a new one, attach it to my template only?)
2) Will that change update all of the text in the form, or just the help text? I only want to update the help text, and I want to leave all other text as-is (the help text is what appears under the question)
You could add in CSS that just applies to this page by going to Settings > Advanced Options > Head HTML and adding:
<style> legend { font-size: 12px; }
</style>
This will only apply to this page and only to legend elements (the "This will ensure you receive the appropriate partner discount." is the only legend element on this page).