Funnels / Websites → Settings → Custom CSS

or inside a Custom CSS element.

🔥 Simple Pop-Out Hover Effect (Clean & Professional)

/* Target your button - add class: pop-button */
.pop-button {
    transition: all 0.3s ease-in-out;
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover Effect */
.pop-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

✅ How To Use It in Go High Level

  1. Click your button.
  2. Go to Advanced → CSS Class
  3. Add this class name:
pop-button