SOLVED

Marketo replacing classes on Landing page.

Go to solution
Gerard_Donnell4
Level 10

Marketo replacing classes on Landing page.

I have a landing page with a Marketo image on it. For some reason Marketo seems to be removing the css class "card-img-top" and replacing it with "lpimg" which is breaking the styles. 

On the first two images it is working fine. It's onlly on the last one this is happening. See the gaps at the sides of the third image. 
Screenshot 2020-07-23 at 11.32.01.png

See below

 

Template code: 

 

<div class="mktoImg" id="Readmore3Image" mktoName="Third Read more Image">
     <img src="https://info.thewebsite.com/rs/911-BEG-887/images/planogram-readmore.png"  class="card-img-top" alt="">
</div>

 

The Code when I preview it: 

 

<div class="mktoImg mktoGen" id="mkto_gen_Readmore3Image"><img src="https://info.thewebsite.com/rs/911-BEG-887/images/Thumb-LP-GalleryCV-300x230.png" class="lpimg" alt="" id="Readmore3Image"></div>

 

 

Anyone else experience this?

Thanks, 

Gerard

1 ACCEPTED SOLUTION

Accepted Solutions
Dave_Roberts
Level 10

Re: Marketo replacing classes on Landing page.

I think you might need to add the class into an optional parameter on the parent .mktoImg div which will write the class to the image when it renders. 

 

Try this instead maybe:

 

<div class="mktoImg" id="Readmore3Image" mktoName="Third Read more Image" mktoImgClass="card-img-top">
     <img src="https://info.thewebsite.com/rs/911-BEG-887/images/planogram-readmore.png"  alt="several images of store display shelves">
</div>

 

Dave_Roberts_0-1595543785889.png

https://docs.marketo.com/display/public/DOCS/Create+a+Guided+Landing+Page+Template

View solution in original post

3 REPLIES 3
adrianfraguela
Level 3

Re: Marketo replacing classes on Landing page.

@Gerard_Donnell4 can you share a URL at all please? Want to check the full page if possible. Thanks

 

Dave_Roberts
Level 10

Re: Marketo replacing classes on Landing page.

I think you might need to add the class into an optional parameter on the parent .mktoImg div which will write the class to the image when it renders. 

 

Try this instead maybe:

 

<div class="mktoImg" id="Readmore3Image" mktoName="Third Read more Image" mktoImgClass="card-img-top">
     <img src="https://info.thewebsite.com/rs/911-BEG-887/images/planogram-readmore.png"  alt="several images of store display shelves">
</div>

 

Dave_Roberts_0-1595543785889.png

https://docs.marketo.com/display/public/DOCS/Create+a+Guided+Landing+Page+Template

Gerard_Donnell4
Level 10

Re: Marketo replacing classes on Landing page.

You were spot on @Dave_Roberts . Can't believe I missed that.