Skip to content

Instantly share code, notes, and snippets.

@chrisgalard
Last active February 20, 2023 10:18
Show Gist options
  • Save chrisgalard/651b80379b6629102923a0f0357e1503 to your computer and use it in GitHub Desktop.
Save chrisgalard/651b80379b6629102923a0f0357e1503 to your computer and use it in GitHub Desktop.
Clickfunnels CSS Snippets

Introduction

This is a series of code snippets that will help you customize your Clickfunnels page with CSS code.

Instructions

Each one of the files below contains a different snippet of code that does a specific thing. Everything inside the /* and /* is a comment.

Once you find the snippet that does what you want to achieve, just copy the entire thing and paste it into your "SETTINGS > CUSTOM CSS" in your funnel step.

/**
* Make all rows in a page span the full width of the screen
*/
.containerInner {
width: 100% !important;
}
/**
* Make a row inside a specific section to be full width
*/
#SECTION-ID .containerInner {
width: 100% !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment