Customizing Your Nanacast-hosted Thank You Page

  1. To customize your Nanacast-hosted Thank You page, first Login to Nanacast. Click Manage > Memberships, then click on the Edit Pricing & Delivery link from your offer's Overview menu. Make sure you disable the Add Podcast or RSS Subscription Buttons to Membership option from within the Podcast and RSS Settings Buttons section.

  2. Scroll down to the Thank You Page Settings section. Expand it and add your CSS directly into the Thank-You Head Tag HTML Code area (make sure to use <style> tags).

    Copy and paste the following for a nice fresh start to build your custom thank you page:

    <style>
    
    body{
    
    background-image:none !important; //removes default background
    
    }
    
    
    
    body table:first-child{ //adds nice shadow and smooth border effects, and expands the width and margin of the main content element
    
    margin-top:10px;
    
    width:900px;
    
    padding:10px;
    
    -moz-border-radius: 10px;
    
    border-radius: 10px;
    
    -moz-box-shadow: 0px 0px 8px 0.3px #2f3a42;
    
    -webkit-box-shadow:0px 0px 8px 0.3px #2f3a42;
    
    box-shadow: 0px 0px 8px 0.3px #2f3a42;
    
    }
    
    </style>