Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Hey Denise, Thanks for posting all the code and details here, it made it much easier to work thru and find a solution. It looks like there's a few issues to work around here but I think I've got something for you that'll work for this situation. Overall the issue(s) seem to stem from using JS and C...
I could use a sanity check today -- is anyone else noticing this behavior in the LP Rich Text Editor? I'm seeing an issue with the "Insert/Edit Image" functionality on the MCE toolbar inside the Rich Text Editor on a Guided Landing Page. I just noticed the issue today but remember in the past that y...
You can also include images in the "label" for a field and set the labels to the "left" using the Marketo form editor (under the Settings options on pg 2). This might not work as well to sub images in-and-out based on a user selection but it's another way to add images beside or atop a form field if...
Hey Colin, All Im seeing come thru on the example link you shared is the web URL to a page in Marketo -- it doesn't look like any of the actual form stuff is in there. There should be an embed code you can get for just the form itself from within Marketo and then you can put that code snippet into W...
Hey Kate, While there's not a filter built into Marketo to isolate the dimensions of an image, it looks like you've got it baked into the filename which would make it searchable so long as you used a consistent naming convention. For example, the image you're looking at here:"10 industries 160x160....
Are you able to post a link to a live page that's using this form? If it's a Marketo LP, the LP needs to be reapproved each time you update and approve the form.If it's an embedded form, there's sometimes up to a 5 min delay before the new version of the form shows up on the page. If you've approved...
Here's a look at some CSS I added in the browser console to test out a fix. I think you could add this to your form's Custom CSS and get most of the issue resolved here: add CSS to reposition error textHere's the CSS to add: form.mktoForm .mktoError { right: 0 !important; bottom: -22px !impor...
I wish there were an easy way to go about this. Once upon a time I saw something that was scripted to actually reorder the elements in the GUI but I wouldn't recommend that approach b/c it's heavy loading and unreliable. It would be super awesome if something like this were an option though, but I'm...
This might have more to do with how your template code is setup to handle the colors. The variables inside a module can be set to update anything within the code but it looks like the bit you're editing has more to do with the background color of the overall module rather than the inner background c...
I think part of the issue here is that you're using the text indent and that pushes the text way over to the left so much that if falls off the page. When you add the "::before" pseudo-element, it'll come before that text and be even more to the left. I'd recommend getting rid of the text-indent and...