How to make rows width in Clickfunnels using CSS

by | Jun 28, 2021 | 0 comments

How to make rows width in Clickfunnels using CSS

by | Jun 28, 2021 | CSS Tips and Tricks | 0 comments



Here is a tutorial on how to make rows in clickfunnels as the same width as sections.

Usually, rows have padding that makes rows a little shorter in width than Clickfunnels, but I will show you two ways to match your rows width with that of sections.

if you want to make all rows’ width match the section

.fullContainer .containerInner {
width: 100%;
}

And here’s is a code if you want to only make a single row full width:

{section id} .containerInner {
width: 100%;
}

source