Re: How to edit rectangle element

Anonymous
Not applicable

How to edit rectangle element

I would love to be able to edit the rectangle element to make the edges round, maybe add some shadowing effects, etc... is that possible?
Tags (1)
3 REPLIES 3
Anonymous
Not applicable

Re: How to edit rectangle element

Anonymous
Not applicable

Re: How to edit rectangle element

Hi Kelley,

We had the same problem and rounded edges of our rectangle boxes using CSS (either in the landing page template or using the HTML element on the page itself). 

To round the edges of ALL landing page rectangles, you can use this code to get started:

div.lpContentsItem {
      border-radius: 3px;
}

Hope that helps!
Anonymous
Not applicable

Re: How to edit rectangle element

Thank you both! This is very helpful!