How to build custom sales pages on Teachable
Building custom sales pages on Teachable involves accessing your course settings, customizing the sales page template, and adding custom HTML/CSS for advanced styling. You can modify headlines, descriptions, pricing sections, and testimonials to create compelling sales pages that convert visitors into students.
Prerequisites
- Active Teachable account
- Course created in Teachable
- Basic HTML/CSS knowledge
- Images and content for your sales page
Step-by-Step Instructions
Access Your Course Sales Page Settings
Choose and Customize Your Sales Page Template
Add Custom HTML and CSS Code
<style> tags for CSS and ensure your code is properly formatted:<style>
.custom-header {
background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
padding: 50px;
text-align: center;
}
</style>Configure Pricing and Call-to-Action Sections
Add Social Proof and Testimonials
Optimize for Mobile and Preview Changes
Set Up SEO and Analytics Tracking
Publish and Test Your Sales Page
Common Issues & Troubleshooting
Custom CSS not applying to sales page elements
Make sure your CSS is wrapped in <style> tags and placed in the Footer Code section. Use !important declarations to override default Teachable styles, and inspect element classes using browser developer tools.
Sales page looks broken on mobile devices
Check your custom CSS for fixed widths or absolute positioning. Use responsive units like %, em, or vw/vh instead of fixed px values. Test on actual devices, not just browser mobile simulation.
Images not loading or appearing pixelated
Ensure images are optimized for web (under 1MB each) and uploaded in high resolution. Use 2x resolution for retina displays and compress images using tools like TinyPNG before uploading to Teachable.
Purchase button not working or redirecting incorrectly
Verify that your course is published and pricing is properly configured. Check that you haven't accidentally overridden the button's default action with custom code. Clear browser cache and test in incognito mode.