Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Hey Jane-If you're using the Edit Code button here, changing anything that is not inside an editable area will break the template.There is a warning that shows up at the top when you click into the code to edit it. A better approach here would be to go into your email template and make the change to...
It's important when trying to overpower the core code that you're familiar with the way Marketo forms' CSS selectors are written. With most other website forms, just using element targeting works to adjust the form styles, something like: input {color: #ff0000;} would make your input text red. In Ma...
Hey Christine,While you won't be able to see your Custom CSS in the "Field Details" menu inside the Form Editor, you should be able to click the "Preview Draft" button in the top right to be able to see your button styles change.If your updated button styles aren't showing up in the Preview Draft, h...
Hey Carla-I think there might be a way to do this without using tables in the email, I tried a few things and added some notes below:I copied the HTML you posted above into an editable area in a tester email. When I tried using the "text-align" tool on the image itself it actually ends up adding a f...
Hey Christina-It looks like it's falling back to the blue color that's set in the template. That makes me think that the color you've added isn't getting read by Outlook. In the past, I've had issues with using the !important tag with some versions of Outlook so it might be that we need to ditch tha...
Hey Sue-We've put something together along the lines of what Blane shared, I think this might be the best we can do for now with guided landing pages. I love the idea of a drag-and-drop editor for Landing Pages that's more like the email editor. If you're interested in seeing a demo of the FLEX fram...
Hey Christina-Thanks for pointing out an issue here that I'm sure lots of folks have run into with some of the free email templates in Marketo. I checked out this template a bit and it looks like it could use a "Button Text Color" variable in that module, which is a pretty quick thing to setup from ...
If you're not already using a fieldset on your form, that'd be something you could take advantage of to style "this label" differently from "that label".For example, you could write CSS that's specific to a field inside a fieldset to override the CSS for "any field". In this case, it sounds like you...
This is great, thanks for sharing a walk thru here Sanford. For hiding the form row that contains the script tag, I've also put that into a fieldset and then write the CSS to target anything inside the fieldset, which makes for a little more flexibility in where is has to be placed on the form -- so...
This might not be specific enough to override any presets in the CSS you're working with here.Try something like:form.mktoForm label.mktoLabel[for='GE_ES_Comments__c'] { float:left !important;width:100% !important;}In most cases, the default styling that is loaded with the Marketo forms is written...