Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Hey Denise, I'd be happy to take a look and see if I can get something working for ya. I'll jump into this tomorrow and get back in the thread here once Im able to get something put together.
It'd be pretty difficult to update the HTML to "redraw" the shapes inside the ...
To specifically remove the "theme" styling layer from a page you can add a stylesheet with id="mktoForms2ThemeStyle" to your template to omit the theme stylesheet from loading. You can also do the same thing with the base stylesheet by adding a stylesheet with id="mktoForms2BaseStyle" to your templa...
You might be running into an issue with the load order of the CSS when you fiddle around with it and it can definitely be frustrating. Most times you're able to accomplish things by copying the selector you see in the inspector and adding an "!important" tag to the end of each rule inside that selec...
When I used it, I didn't have the connector part hooked up so the HTML has to be a little different. I kept two copies of the code: One had the Marketo syntax for variables built in (the Marketo code) and the other was the rendered code (no variables) that I'd load into Litmus. I'd grab the HTML fro...
Hey Jasbir, As far as I know this is not possible using the native ...
It's been a few years, but I've used Litmus extensively and liked it a lot. As a developer it had all the tools I needed to test things out and the only downside I found was the cost. We use Email on Acid now and Im just not as big a fan -- it seems a bit less capable and inconsistent and I'm not a ...
Thanks for the updates and for digging in to build this up from the start and get it working, good stuff here!::long-distance-high-five:: For what it's worth, I tell everyone I can to that it's a good idea to use the checkboxes field type (even one checkbox input) b/c it comes paired with the text t...
Here's some CSS that'll hide paragraphs inside of a label. You might look at the form and see if the paragraph is actually inside the label and remove it that way, but this'll hide the whole thing to get you to a quick solution here:.mktoForm label > p { display: none;} Hide the paragraph inside ...
The form's unsubscribe field has an id of "axcoUnsubscribe". (Image 1)It looks like the script is looking for a field with the id of "Unsubscribed" the way you've got it setup. (Image 2) If you edit the script to change "Unsubscribed" to "axcoUnsubscribe" it might work out the issue here. This id=...