Re: Changing Button style on a form via CSS

Jo_Pitts1
Level 10 - Community Advisor

Changing Button style on a form via CSS

All,

I'm creating my first Marketo form, and started using the simple form theme, so I could overlay CSS from there.

I've added this into my custom CSS

.mktoForm .mktoButton {

  border: 1px solid #f07d00;

  color: #5e524d; 

}

But for it is having no effect on the button when I do a preview.

What am I missing (given that I am both a marketo n00b and a CSS n00b, I will be missing something!)?

Cheers

Jo

12 REPLIES 12
SanfordWhiteman
Level 10 - Community Moderator

Re: Changing Button style on a form via CSS

Please link to your page.

Jo_Pitts1
Level 10 - Community Advisor

Re: Changing Button style on a form via CSS

Here is my landing page - http://go.auranga.co.nz/AUR-2017-Test.html

Here is what I am working towards achieving (including mouse over on the button) Register your interest

Ultimately, I expect to be embedding the form directly, not via a Marketo LP

Cheers

Jo

SanfordWhiteman
Level 10 - Community Moderator

Re: Changing Button style on a form via CSS

You would need to use !important on those because of the placement of the built-in Custom CSS <style> (i.e. above the Simple forms <style>). Or you could place your custom CSS in its own <style> tag that you place underneath the <form>, which is probably more manageable and would allow you to use the CSS cascade directly without !important.

Jo_Pitts1
Level 10 - Community Advisor

Re: Changing Button style on a form via CSS

It does sound like !important is a bit of a kludge, so I'd rather dodge that.

how do you mean in its own <style> tag that you place underneath the <form>?

Assume I'm really n00bish, and struggling here

Thanks in advance for the awesome help!

SanfordWhiteman
Level 10 - Community Moderator

Re: Changing Button style on a form via CSS

how do you mean in its own <style> tag that you place underneath the <form>?

Meaning you don't use the Form Editor's Custom CSS, since that makes it harder to override styles (it's better suited for adding non-conflicting additional styles, not changing them). Iinsert your styles in a separate

<style>

</style>

That you place in the template/page underneath the <form>.

Jo_Pitts1
Level 10 - Community Advisor

Re: Changing Button style on a form via CSS

OK.  I kind of understand.

Out of interest, is it possible to add new themes over and above the 7 shipped, so that the them becomes the basis for any forms created?

SanfordWhiteman
Level 10 - Community Moderator

Re: Changing Button style on a form via CSS

It's not possible to add a new theme to the Theme Picker proper, but it's certainly possible to create a new theme that's stored in an all-inclusive CSS file.

Jo_Pitts1
Level 10 - Community Advisor

Re: Changing Button style on a form via CSS

Sanford,

coming back to this idea of a separate <style> section.

are you suggesting I take the embed code

[code]<script src="//app-sn04.marketo.com/js/forms2/js/forms2.min.js"></script>

<form id="mktoForm_1028"></form>

<script>MktoForms2.loadForm("//app-sn04.marketo.com", "540-EFJ-058", 1028);</script>[/code]

and after the <form id=...</form>

add in a <style></style> loaded with CSS goodness?

SanfordWhiteman
Level 10 - Community Moderator

Re: Changing Button style on a form via CSS

Yes.

P.S. To highlight code here, go into the Advanced Editor and click the >> button (BBCode like [code] isn't recognized).

pastedImage_3.png