Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Add this code to change the color of the asterisk: .mktoForm .mktoAsterix { color: #FFFFFF !important; }
Also, the closing bracket "}"directly above /*MY CUSTOM STYLE ENDS */ should be moved to right above /* MY CUSTOM STYLE STARTS */Make sense?
Richard,You need to add a period before mktoForm. That should fix it!
Richard,I use this to custom syle my buttons. Hopefully it'll work for your buttons. .mktoForm .mktoButtonWrap.mktoSimple .mktoButton { color:#FFFFFF !important; //Place property and styles here. } I put !important after each style to make sure the browser uses my styles instead of Marketo's...
Kenny,Thank you so much! Worked perfectly!
Hi,I added some custom Javascript to my Marketo form's embed code. Now I want to put that form onto a Marketo landing page. I cannot figure out how to exactly embed a form onto a Marketo LP. Has anyone been able to accomplish this?Thanks,Corey
Chris,In the Form Settings under Thank You Page you can send form "filler outers" to a specific page based on certain information that they entered into the form, such as State or Country. Just click on Add Choice under Thank You Page to go to the Advanced Thank You Page dialog box. There you can en...
Sam,This will hide the button from your form: .mktoForm .mktoButton { visibility:hidden !important; } However, I agree with everyone else. I'm not sure if users will know how to submit the form if they do not see a button.
Hi Rachel,It doesn't look like you are selecting anything with your CSS. Go ahead and remove the @import statement. You need to select the marketo form inside you CSS with this selector: .mktoFormAdd this code to your CSS file:.mktoForm { font-family:'Pontano Sans', sans-serif !important; }If that ...