Re: Deleting a button in a form

Tara_Rowe
Level 5

Deleting a button in a form

Is there anyway to delete a button in a form? We used a button from the section provided in Marketo but we cannot seem to get it to work. We have verified that the form settings has the thank you page set to the landing page to flip to, and have reached out to support for help on why it will not work. At this point until we can figure out how to get it working we would like to add our own designed button to hyperlink to the page, through the weekend rather then the button not working all together. Will I need to start from scratch or is there a way to remove the button already in place?

2 REPLIES 2
Gerard_Donnell4
Level 10

Re: Deleting a button in a form

I would target the button element with a "display none" using css. Just add the code below to your page and that should hide it. If that doesn't work paste and link or DM me and I will take a look.

.mktoButtonRow {

display:none !important;

}

Thanks,

Gerard

Gerard_Donnell4
Level 10

Re: Deleting a button in a form

The code I mentioned above needs added to the <style> tags on the page or added to the css document linking to the page.

If you don't have a style element already on the page just add the following code into the head section of your page.

<style>

.mktoButtonRow {

display:none !important;

}

</style>